美文网首页【HTML+CSS】
【CSS实现hover动态效果】

【CSS实现hover动态效果】

作者: 魔_术师 | 来源:发表于2017-08-17 00:25 被阅读8次
CSS实现hover动态效果
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8">
    </head>
    <style type="text/css">
        .wrap {
            width: 500px;
            height: 500px;
            margin: 0 auto;
            border: 1px solid blue;
        }
        .con {
            width: 80%;
            height: 100px;
            margin: 40px auto;
            border: 1px solid black;
        }
        /*必须在父级hover,兼容:IE6+*/
        .one:hover p {
            color: red;
        }
        /*标签内要加data-title属性,兼容:IE9+*/
        .two:hover::before {
            content: attr(data-title);/*取到data-title属性的值*/
            color: green;
        }
        .three:hover::after {
            content: attr(data-title);/*取到data-title属性的值*/
            color: blue;
        }
    </style>
    <body>
        <div class="wrap">
            <div class="con one">
                <span>鼠标移进来</span>
                <p>颜色会变哦</p>
            </div>
            <div class="con two" data-title="看我七十二变">
                <span>鼠标移进来</span>
                <p>文字会变哦</p>
            </div>
            <div class="con three" data-title="看我七十二变">
                <span>鼠标移进来</span>
                <p>文字会变哦</p>
            </div>
        </div>
    </body>
</html>

相关文章

网友评论

    本文标题:【CSS实现hover动态效果】

    本文链接:https://www.haomeiwen.com/subject/vgawrxtx.html