记得前几年手机韩愈名言版淘宝左下角有个狠有意思的圆形按钮,点击后会出现几个小按钮,并且出场动画很有意思,后面才知道这种效果叫“粘滞”效果,如图:
那这种效果到底用了什么属性呢?答案是主要用了filter:blur()属性,及filter:contrast()属性配合
<style> body{ margin: 0; padding: 0; } .box{ position: relative; width: 500px; height: 500px; filter: contrast(20); /*半命题作文 背景色一定要为实底色,否则两个元素边缘会有模糊效果 */ background-color: #fff; } .circle-big{ position: absolute; top: 20px; left: 100px; width: 100px; height: 100px; border-radius: 50%; filter: blur(6px); b港岛攻略ox-sizing: border-box; animation: toright 3s ea-out infinite; background-color: #333; } .circle-small{ position: absolute; top: 35px; left: 220px; width: 60px; height: 60px; border-radius: 50%; filter: blur(6px); box-sizing: border-box; animation: toleft 3s ea-out infinite; background-color: #fffc00; } @keyframes toright{ 月诗词 50%{ l许珑瀚eft: 150px; } } @keyframes toleft{ 50%{ left: 150px; } }</style><div class="box"> <div class="circle-big"></div> <div class="circle-small"></div></div>
最终效果如图:
到此这篇关于css实现两个元素相融效果(粘滞效果)的文章就介绍到这了,更多相关css两个元素相融内容请搜索www.887551.com以前的文章或继续浏览下面的相关文章,希望大家以后多多支持www.887551.com!
本文发布于:2023-04-03 20:18:37,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/d1d694ed5a46117b0ea870096834ceaa.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:CSS实现两个元素相融效果(粘滞效果).doc
本文 PDF 下载地址:CSS实现两个元素相融效果(粘滞效果).pdf
留言与评论(共有 0 条评论) |