关于transition-property

关于transition-property

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>transition-property</title>

<style type="text/css">

body { background: #abcdef; }

div { width: 800px; height: 800px; margin: auto; transform: rotate(0deg); background: url(images/imooc.png) no-repeat center center, url(images/circle_outer.png) no-repeat center center;

    -webkit-transition-property: transform;

       -moz-transition-property: transform;

        -ms-transition-property: transform;

         -o-transition-property: transform;

            transition-property: transform;

}

div:hover { cursor: pointer; transform: rotate(180deg);

    /*-webkit-transition-property: transform;

       -moz-transition-property: transform;

        -ms-transition-property: transform;

         -o-transition-property: transform;

            transition-property: transform;*/

}

</style>

</head>

<body>

<div></div>

</body>

</html>

就是我注释的这几行代码是什么意思呢 过度的时候我不是已经设置图片旋转一百八十度了吗 再添加这几行有什么用呢? 我发现加不加对效果都没有影响


正在回答 回答被采纳积分+1

登陆购买课程后可参与讨论,去登陆

1回答
好帮手慕码 2020-06-12 15:16:04

同学你好,解答如下:

1、transition-property 属性规定应用过渡效果的 CSS 属性的名称。-webkit-、-moz-等表示兼容不同的浏览器。

2、该属性的默认为all,意思是所有属性都应用,所以不添加也是可以的。

如果我的回答 帮到了你,欢迎采纳,祝学习愉快~

问题已解决,确定采纳
还有疑问,暂不采纳

恭喜解决一个难题,获得1积分~

来为老师/同学的回答评分吧

0 星
请稍等 ...
意见反馈 帮助中心 APP下载
官方微信

在线咨询

领取优惠

免费试听

领取大纲

扫描二维码,添加
你的专属老师