这是一款非常简单的纯css3白云飘动背景特效。该白云飘动特效使用css animation动画来控制不同的白云,以不同的速度进行运动,形成白云飘动的效果。
html结构
该白云飘动特效的html结果非常简单,使用一个<div>来包裹一组作为白云的<div>元素。
<div id="clouds"><div class="cloud x1"></div><div class="cloud x2"></div><div class="cloud x3"></div><div class="cloud x4"></div><田园诗歌;div class="cloud x5"></div></div>
css样式
白云使用.cloud 和它的:before和:after伪元素来制作。
.cloud {width: 200px; height: 60px;background: #fff;border-radius: 200px;-moz-border-radius: 200px;-webkit-border-radius: 200px;position: relative;}.cloud:before, .cloud:after {content: '';position: absolute;background: #fff;width: 100px; height: 80px;position: absolute; top: -15px; left: 10px;border-radius: 100px;-moz-border-radius: 100px;-webkit-border-radius: 100px;-webkit-transform: rotate(30deg);transform: rotate(30deg);-moz-transform: rotate(30deg);}.cloud:after {width:创新的故事 120px; height: 120px;top: -55px; left: auto; right: 15px;}
每一朵白云都执行moveclouds动画,但是它们的动画速度各不相同。大小和透明度也各不相同。
.x1 {-webkit-anima西安外国语大学录取分数线tion: moveclouds 15s linear infinite;-moz-animation: moveclouds 15s linear infinite;-o-animation: moveclouds 15s linear infinite;}.x2 {left: 200px;-webkit-transform: scale(0.6);-moz-transform: scale(0.6);transform: scale(0.6);opacity: 0.6; /*opacity正比例和反比例的意义 proportional to the size*//*speed will also be proportional to the size and opacity*//*more the speed. less the time in 's' = conds*/-webkit-animation: moveclouds 25s linear infinite;-moz-animation: moveclouds 25s linear infinite;-o-animation: moveclouds 25s linear infinite;}......@-webkit-keyframes moveclouds {0% {margin-left: 1000px;}100% {margin-left: -1000px;}}@-moz-keyframes moveclouds {0% {margin-left: 1000px;}100% {margin-left: -1000px;}}@-o-keyframes moveclouds {0% {margin-l祖国的花朵eft: 1000px;}100% {margin-left: -1000px;}}
以上就是css3实现简单的白云飘动背景特效的详细内容,更多关于css3特效的资料请关注www.887551.com其它相关文章!
本文发布于:2023-04-03 20:57:12,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/7594b21e777c8a20b4bbb61fd81fcb1e.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:css3实现简单的白云飘动背景特效.doc
本文 PDF 下载地址:css3实现简单的白云飘动背景特效.pdf
留言与评论(共有 0 条评论) |