高仿土豆网视频悬浮效果

写了一个简单的仿土豆的视频悬浮效果


上代码:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>

        a {
            display: block;
            height: 252px;
            width: 448px;
            position: relative;
        }
        .perspective {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0px;
            left: 0px;
            display: none;
            background:rgba(0,0,0,0.4) url("images/arr.png") no-repeat center;
        }
        a:hover .perspective {
            display: block;
        }
    </style>
</head>
<body>
<a href="#">
    <img src="https://r1.ykimg.com/050C00005AEBF733AD9AB72852052793"  height="252" width="448" >
    <div class="perspective"></div>
</a>
</body>
</html>

猜你喜欢

转载自blog.csdn.net/zteenmozart/article/details/80585076
今日推荐