纯CSS3制作的鼠标悬停时边框旋转

时间:2021-05-08

下面以2017年新年祝福语为例给大家展示下效果。

纯CSS3实现的鼠标悬停时边框旋转的效果:

实现代码如下,代码中注释已经比较详细,就不再多说了:

<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Document</title> <style type="text/css"> body { width: 40rem; height: 30rem; font-size: 62.50%; } .container { width: 100%; height: 100%; background: #0f0; text-align: center; } .content { display: inline-block; margin-top: 5rem; width: 20rem; height: 20rem; border: solid 15px rgba(255, 255, 255, 1); border-radius: 50%; box-sizing: border-box; transition: all 2s; } .content:before { display: inline-block; width: 100%; height: 100%; border-radius: 50%; box-sizing: border-box; content: ''; } .content:hover { } .content:hover:before { border: dashed 30px #fff; animation: whirl 9s linear infinite; } .con-text { margin: -60% auto; width: 80%; font-size: 3rem; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } @keyframes whirl { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } </style></head><body> <section class="container"> <div class="content" title="新年好新年好新年好"> <p class="con-text">新年好新年好新年好</p> </div> </section></body></html>

以上所述是小编给大家介绍的纯CSS3制作的鼠标悬停时边框旋转,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章