svg+css实现悬浮指纹动画效果代码
代码语言:html
所属分类:动画
代码描述:svg+css实现悬浮指纹动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<style>
body {
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: #0B0B0F;
}
.touch {
stroke: white;
stroke-dashoffset: 23;
stroke-dasharray: 23;
opacity: 0;
transition: all 1s ease;
}
.fingerprint {
transform: scale(2);
}
.fingerprint:hover path.touch {
opacity: 1;
stroke-dashoffset: 0;
stroke-dasharray: 23;
}
.fey {
position: fixed;
bottom: 20p.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0