css+js实现圆环文字转动跟随鼠标动画效果代码
代码语言:html
所属分类:动画
代码描述:css+js实现圆环文字转动跟随鼠标动画效果代码
代码标签: css js 圆环 文字 转动 跟随 鼠标 动画
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<style>
:root {
--circle-size: 25px;
--letter-width: 14px;
--letter-space: 60px;
--font-size: 10px;
--letter-spacing-x: 20;
--second-circle-border: 4px;
--second-circle-size: 35px;
}
body {
font-family: 'Ubuntu', sans-serif;
margin: 0 auto;
background-color: #191a1e;
color: white;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.cursor {
position: absolute;
width: 25px;
height: 25px;
background: white;
border-radius: 100%;
cursor: none;
z-index: 100;
transition: background .1s ease;
mix-blend-mode: difference;
}
.cursor .link {
position: absolut.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0