切换风格

默认晚霞 雪山 粉色心情 伦敦 花卉 绿野仙踪 加州 白云 星空 薰衣草 城市 简约黑色 简约米色 龙珠
回复 0

3774

主题

3774

帖子

1万

积分

论坛元老

Rank: 8Rank: 8

积分
12590
分享一个人脸识别的样式代码[复制链接]
发表于 2022-5-21 22:15:19 | 显示全部楼层 |阅读模式
221518i47529g1lj6gm9dg.jpg
纯CSS。 复制下方代码 修改下图片路径即可

<!DOCTYPE html>

<html lang="en">



<head>

      <meta charset="UTF-8">

      <meta name="viewport" content="width=device-width, initial-scale=1.0">

      <title>人脸扫码效果</title>

      <style>

              img {

                    position: absolute;

                    /* display: none; */

              }



              div {

                    width: 360px;

                    height: 200px;

                    position: absolute;

                    background:

                          linear-gradient(#03a9f4, #03a9f4),

                          linear-gradient(90deg, #ffffff33 1px, transparent 0, transparent 19px),

                          linear-gradient(#ffffff33 1px, transparent 0, transparent 19px),

                          linear-gradient(transparent, #2196f3);

                    background-size: 100% 1.5%, 10% 100%,100% 10%, 100% 100%;

                    background-repeat: no-repeat, repeat, repeat, repeat;

                    background-position: 0 0, 0 0, 0 0, 0 0;

                    clip-path: polygon(0% 0%, 100% 0%, 100% 1.5%, 0% 1.5%);

                    animation: move 1.5s linear infinite;

              }



              @keyframes move {

                    to {

                          background-position: 0 100%, 0 0, 0 0, 0 0;

                          clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);

                    }

              }

      </style>

</head>



<body>

      <img src="ns.jpg" alt="人脸" height="200"     >

      <div></div>

</body>



</html>
复制代码
不定时更新 关于本人对前端知识的 有趣小demo
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|不懂 ( 粤ICP备14042591号-1 )|网站地图

GMT+8, 2024-11-23 21:26 , Processed in 0.115717 second(s), 30 queries .

Powered by Discuz! X3.4

© 2001-2013 Comsenz Inc.

返回顶部