CSS3 implements a cool flash effect code

零下一度
Release: 2017-05-03 13:55:59
Original
6085 people have browsed it

When the mouse is moved up, there will be a flash of light across the picture, the effect is quite cool. So let’s realize this effect again:
The general idea is to design a transparent layer, skewx deforms by negative 25 degrees on the X-axis, the background color uses the linear gradient of CSS3 linear-gradient, and then hover time, set the animation time of 0.5s.
At the same time, use cursor:pointer on the i layer. If you do not set this, you need to wait for the transparent layer animation to see
It will be more clear!

<!DOCTYPE html >  
    <html xmlns =“www.php.cn/1999/xhtml”>  
    <head>  
    <meta http-equiv =“Content-Type”content =“text / html; charset = utf-8”/>  
    <title>闪光图片</ title>  
    <style>  
    .overimg {  
        位置:亲戚;  
        显示:块;  
        / * overflow:hidden; * /  
        box-shadow:0 0 10px #FFF;  
    }  
    。光{  
        cursor:pointer;  
        位置:绝对  
        左:-180px;  
        顶部:0;  
        width:180px;  
        height:90px;  
        background-image:-moz-linear-gradient(0deg,rgba(255,255,255,0),rgba(255,255,255,0.5),rgba(255,255,255,0));  
        background-image:-webkit-linear-gradient(0deg,rgba(255,255,255,0),rgba(255,255,255,0.5),rgba(255,255,255,0));  
        变换:skewx(-25deg);  
        -o-transform:skewx(-25deg);  
        -moz变换:skewx(-25deg);  
        -webkit-transform:skewx(-25deg);  
       
    }  
    .overimg:hover .light {  
        左:180px;  
        -moz-transition:0.5s;  
        -o-transition:0.5s;  
        -webkit转换:0.5s;  
        过渡:0.5s;  
    }  
    </ style>  
      
    </ head>  
    <body>  
    <p class =“overimg”>  
        <a> <img src =“www.php.cn/librarys/images/201402/2014_02_15_01.jpg”> </a>  
        <i class =“light”> </ i>  
    </ p>  
    </ body>  
    </ html>
Copy after login

The above is the detailed content of CSS3 implements a cool flash effect code. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!