校园春色亚洲色图_亚洲视频分类_中文字幕精品一区二区精品_麻豆一区区三区四区产品精品蜜桃

主頁 > 知識庫 > html+css實現(xiàn)圖片掃描儀特效

html+css實現(xiàn)圖片掃描儀特效

熱門標(biāo)簽:地圖標(biāo)注沿海城市房價 地圖標(biāo)注員工作內(nèi)容 高德地圖標(biāo)注廁所 西安金倫外呼系統(tǒng) 中國地圖標(biāo)注城市的 智能語音電銷機器人客戶端 威海語音外呼系統(tǒng)平臺 通遼地圖標(biāo)注app 江西ai電銷機器人如何

本文主要介紹了html css 圖片掃描儀,分享給大家,具體如下:

效果:

這樣,有抖動的:

無抖動的:

實現(xiàn):

1.定義一個盒子:

<body>
    <div class="tu"></div>
</body>

2.基本樣式,長寬背景圖等等~

 .tu{
            width: 500px;
            height: 300px;
            background-image: url(8.jpg);
            background-size: 100% auto;
            background-repeat: no-repeat;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

cursor: pointer;鼠標(biāo)經(jīng)過盒子樣式為小手

3.用偽類元素做掃描線,基本樣式:

 .tu::after{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 500px;
            height: 35px;
            background-image: url(8.jpg);
            background-size: 100% auto;
            background-repeat: no-repeat;
            filter: sepia(100%); 
            opacity: 0;
           
        }

filter: sepia(100%); 圖片發(fā)黃。
filter: invert(100%); 像X光底片。

4.實現(xiàn)掃描:

.tu:hover::after{
            opacity: 1;
            animation: move 1.8s linear infinite;
        }
        @keyframes move{
            0%{
                top: 0;
                background-position: 6px 0px; 
            }
            20%{
                top: 60px;
                background-position: -6px -60px; 
            }
            40%{
                top: 120px;
                background-position: 6px -120px; 
            }
            60%{
                top: 180px;
                background-position: -6px -180px; 
            }
            80%{
                top: 240px;
                background-position: 6px -240px; 
            }
            100%{
                top: 300px;
                background-position: -6px -300px; 
            }
        }

讓background-position的y軸位移剛好等于top的距離,然后x軸為0的話就不抖,有數(shù)值就會抖動。

完整代碼:

<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body{
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: rgb(0, 0, 0);
        }
        .tu{
            width: 500px;
            height: 300px;
            background-image: url(8.jpg);
            background-size: 100% auto;
            background-repeat: no-repeat;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }
        .tu::after{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 500px;
            height: 20px;
            background-image: url(8.jpg);
            background-size: 100% auto;
            background-repeat: no-repeat;
            filter: invert(100%); 
            opacity: 0;
           
        }
        .tu:hover::after{
            opacity: 1;
            animation: move 1.8s linear infinite;
        }
        @keyframes move{
            0%{
                top: 0;
                background-position: 6px 0px; 
            }
            20%{
                top: 60px;
                background-position: -6px -60px; 
            }
            40%{
                top: 120px;
                background-position: 6px -120px; 
            }
            60%{
                top: 180px;
                background-position: -6px -180px; 
            }
            80%{
                top: 240px;
                background-position: 6px -240px; 
            }
            100%{
                top: 300px;
                background-position: -6px -300px; 
            }
        }
    </style>
</head>
<body>
    <div class="tu"></div>
</body>
</html>

總結(jié):

這是網(wǎng)上看到一外國博主的創(chuàng)意,然后自己也弄了一個,雖然效果是比較簡單的,但也是挺好玩的~

到此這篇關(guān)于html+css實現(xiàn)圖片掃描儀特效 的文章就介紹到這了,更多相關(guān)html+css圖片掃描儀 內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持腳本之家!

標(biāo)簽:河池 崇左 青海 阜陽 北海 眉山 晉中 營口

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《html+css實現(xiàn)圖片掃描儀特效》,本文關(guān)鍵詞  html+css,實現(xiàn),圖片,掃描儀,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《html+css實現(xiàn)圖片掃描儀特效》相關(guān)的同類信息!
  • 本頁收集關(guān)于html+css實現(xiàn)圖片掃描儀特效的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    主站蜘蛛池模板: 尼玛县| 章丘市| 阳高县| 团风县| 科技| 芦溪县| 松滋市| 连州市| 阳城县| 黄陵县| 德江县| 龙南县| 达拉特旗| 同心县| 庆云县| 岐山县| 萝北县| 仪陇县| 邯郸县| 进贤县| 南宁市| 南安市| 昌宁县| 同德县| 普陀区| 宜春市| 高州市| 洛阳市| 柘荣县| 东城区| 张北县| 雷波县| 文昌市| 临颍县| 泉州市| 同德县| 温州市| 天祝| 南宫市| 莱西市| 文昌市|