35.CSS指纹扫描器动画效果
Posted @大迁世界
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了35.CSS指纹扫描器动画效果相关的知识,希望对你有一定的参考价值。
效果 (源码网盘地址在最后)
源码
index.html
<!DOCTYPE html>
<html>
<head>
<title>Scanning Fingerprint Animation</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="scan">
<div class="fingerprint"></div>
<h3>Scanning...</h3>
</div>
</body>
</html>
css
*
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: consolas;
body
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: #111;
.scan
position: relative;
display: flex;
flex-direction: column;
align-items: center;
.scan .fingerprint
以上是关于35.CSS指纹扫描器动画效果的主要内容,如果未能解决你的问题,请参考以下文章