当前位置:首页 > 网站应用

css3实现不断旋转动画加载,并弹性布局显示

cjw1232年前 (2023-11-01)网站应用3950
<style>
body{
background:#34495e;
display:flex;
justify-content:center;
align-items:center;
height:100vh;
}
.loading{
position:relative;
width:200px;
height:200px;
border-top:10px solid #e74c3c;
border-radius:50%;
animation:rotate 2s linear infinite;
}
.loading::before{
position:absolute;
top:-10px;
left:0;
content:'';
width:200px;
height:200px;
border-top:10px solid #e67e22;
border-radius:50%;
transform:rotate(120deg);
}
.loading::after{
position:absolute;
top:-10px;
left:0;
content:'';
width:200px;
height:200px;
border-top:10px solid #3498bd;
border-radius:50%;
transform:rotate(240deg);
}
span{
position:absolute;
width:200px;
height:200px;
line-height:200px;
text-align:center;
color:white;
animation:rotateR 2s linear infinite;
}
@keyframes rotate{
to{
 transform:rotate(360deg);
}
}
@keyframes rotateR{
to{
 transform:rotate(-360deg);
}
}
</style>
<div class="loading">
	<span>loading</span>
</div>
<!--
伪元素大小只受内容影响,用定位的方式脱离文档流,所以要用positon,再用top调整位置,此时3个弧重合在一起。再旋转120、240,各自占1/3份
再加动画,省from
此时,span也跟着转,使其正中显示(垂直、水平居中),再加个反之转的动画,平衡之
最后,再之整个在正中显示,即弹性布局-->


扫描二维码推送至手机访问。

版权声明:本文由追求完美发布,如需转载请注明出处。

本文链接:https://cjw123.com/blog/?id=27

标签: html
分享给朋友:

相关文章

html meta标签屏蔽搜索引擎的用法

html页面中的 meta 标签可以用来识别搜索引擎的蜘蛛类型,可以规定meta标签所在的html页面是否被蜘蛛抓取,下面是这个meta标签的用法,大家可以借鉴一下。搜索引擎的 meta 标签的解析下面是meta标签对搜索引擎的解析<meta name='robot…

CSS中给背景图增加遮罩

CSS作为网页开发的重要组成部分,经常会用到遮罩层的效果,实现页面视觉上的突出和强调。那么,CSS怎样设置遮罩层呢?下面就来简单介绍一下。首先,要清楚遮罩层的定义。遮罩层是指在页面元素上添加一个半透明的罩子,使得页面元素之间的重叠效果。”遮”住页面上的元素。接下来,我们来看如何在CSS中实现遮罩层的…

好看的网站自适应图片文字广告位代码

<div class="ad"> <!--图片横幅广告--> <a href="https://cjw123.com/blog/" target="_blank" &…

开灯!关灯!

<!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">…

网站设置点击任何地方弹出新页面广告只弹出一次

1、js实现第一次访问站时点击任何地方都先弹出一个广告页:<script> document.onmousedown = function(){     var isOpenedAd  =&nb…

文字特效代码:超酷文字快速展示

<!--要完成此效果需要三个步骤 第一步:把如下代码加入到<head>区域中--> <style> .let{ color:white; font-family:Verdana; font-weight:bold; width:500; filte…

发表评论

访客

看不清,换一张

◎欢迎参与讨论,请在这里发表您的看法和观点。