利用css实现波纹动画效果实例
发布时间:2017-03-04 17:16:50 作者:佚名 我要评论
这篇文章主要介绍了关于利用css实现波纹动画效果的相关资料,文中给出了完整的实例代码,实现后的效果非常不错,需要的朋友可以参考借鉴,下面来一起看看吧。
GPT4.0+Midjourney绘画+国内大模型 会员永久免费使用!
【 如果你想靠AI翻身,你先需要一个靠谱的工具! 】
效果图如下
实例代码如下
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 | <!DOCTYPE html> < html > < head > < meta charset = "UTF-8" > < title ></ title > < style > body{ background: #000; } .box{ width: 100%; height: 600px; background: #000; } .vr { display: block; width: 71px; height: 71px; border-radius: 50%; position: absolute; left: 18px; top: 22px; background:#98FB98 url(../imges/new_img/vr.png) no-repeat left top; background-size: 100% 100%; z-index: 99; } .vr_wrap { background: #fff; opacity: 0.7; filter: alpha(opacity=70); width: 71px; height: 71px; border-radius: 50%; position: absolute; left: 18px; top: 22px; box-shadow: 0px 0px 50px 10px #fbfbfb; animation: mymove 2s infinite; /*animation-direction:alternate;*/ border-radius: 50%; } .vr_wrap2 { background: #fff; opacity: 0.9; filter: alpha(opacity=90); border-radius: 50%; width: 71px; height: 71px; border-radius: 50%; position: absolute; left: 18px; top: 22px; box-shadow: 0px 0px 50px 10px #fbfbfb; animation: mymove1 2s infinite; /*animation-direction:alternate;*/ } @keyframes mymove { 0% { box-shadow: 0px 0px 0px 2px #fff; height: 71px; width: 71px; } 100% { box-shadow: 0px 0px 0px 20px #fff; height: 72px; width: 72px; } 100% { opacity: 0; filter: alpha(opacity=0); } } @keyframes mymove1 { 0% { box-shadow: 0px 0px 0px 2px #fff; height: 71px; width: 71px; } 50% { box-shadow: 0px 0px 0px 20px #fff; height: 72px; width: 72px; opacity: 0; } 100% { opacity: 0; filter: alpha(opacity=0); } } </ style > </ head > < body > < div class = "box" > < a class = "vr" href = "http://vr.nibaoo.cn/01/" ></ a > < div class = "vr_wrap" ></ div > < div class = "vr_wrap2" ></ div > </ div > </ body > </ html > |
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对脚本之家的支持。
相关文章
- 纯CSS实现波纹波动动画特效源码是一款实现了类似晃动水杯出现的水面左右摇摆的波纹波动效果代码,本段代码适应于所有网页使用,有需要的朋友们欢迎前来下载使用2017-02-23
- 是一段实现了从左向右依次延伸的线条型波浪动态效果代码,同时也是从左向右展开不同幅度的波浪效果,本段代码代码适应于所有网页使用,有需要的伙伴们就来下载使用吧2016-08-12
最新评论