Picture scanner special effects html+css

effect:

In this way, with jitter:
Insert picture description here
without jitter:
Insert picture description here

achieve:

1. Define a box:

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

2. Basic styles, long and wide background images, etc.~

 .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; the mouse passes the box style as a small hand

3. Use pseudo-type elements as scan lines, basic style:

 .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%); The picture turns yellow.
filter: invert(100%); Like X-ray film.

4. Realize scanning:

.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; 
            }
        }

Make the y-axis displacement of the background-position exactly equal to the distance of top, and then if the x-axis is 0, there will be no shaking, and there will be shaking if there is a value.

Complete code:

<!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>

to sum up:

This is the idea of ​​a foreign blogger I saw on the Internet, and I also made one myself. Although the effect is relatively simple, it is also quite fun~

Guess you like

Origin blog.csdn.net/luo1831251387/article/details/111570536