前端html实现鼠标停在图片上出现动画效果

前端html鼠标移入图片动作效果

效果展示:
没有用到js和css,并且涉及到绝对定位 absolute。和相对定位relative

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        /* 清除所有标签默认间距 */
        * {
            margin: 0;
        }

        .box {
            width: 440px;
            height: 320px;
            /* 定义相对位置 */
            position: relative;
            /* 设置溢出隐藏 */
            overflow: hidden;
            display: inline-block;
        }

        .box img {
            /* 鼠标移入变化时间 */
            transition: all 0.5s;
        }

        .small {
            width: 400px;
            height: 280px;
            /* 小块背景色 */
            background-color: #00bcd438;
            /* 定义绝对位置 */
            position: absolute;
            top: 20px;
            left: 20px;
            /* 变化时间 */
            transition: all 0.5s;
            /* 透明度为0 */
            opacity: 0;
            /* 转换:旋转180度,放大1.5倍 */
            transform: rotate(180deg) scale(1.5);
        }

        .text-box {
            /* 定义绝对位置 */
            position: absolute;
            left: 0;
            top: 115px;
            width: 440px;
            /* 文本居中 */
            text-align: center;
            /* 文字大小 */
            font-size: 30px;

            color: white;
            /* 转换:放大2倍 */
            transform: scale(2);
            /* 透明度为0 */
            opacity: 0;
            /* 变化时间 */
            transition: all 1s;
        }

        /* 图片变化 */
        .box:hover img {
            transform: scale(2) rotate(45deg)
        }

        /* 透明块 */
        .box:hover .small {
            opacity: 1;
            transform: rotate(0deg) scale(1);
        }

        /* 文字 */
        .box:hover .text-box {
            transform: scale(1);
            opacity: 1;
        }
    </style>
</head>

<body>
    <div class="box">
 /* 选择图片 */
        <img src="images/img-1.jpg" alt="">
        <div class="small"></div>
        <div class="text-box">
            <p class="title">KRISTINA</p>
            <p>Web Designer</p>
        </div>
    </div>
    <div class="box">
        <img src="images/img-2.jpg" alt="">
        <div class="small"></div>
        <div class="text-box">
            <p class="title">KRISTINA</p>
            <p>Web Designer</p>
        </div>
    </div>
    <div class="box">
        <img src="images/img-3.jpg" alt="">
        <div class="small"></div>
        <div class="text-box">
            <p class="title">KRISTINA</p>
            <p>Web Designer</p>
        </div>
    </div>
</body>

</html>

你可能感兴趣的:(html,html5)