css3 transition这个动画效果怎么写?hover下的某一块div ,而不是div:hover,这个div

2020-05-11 动漫 98阅读

.product-index .editor .editor1 { /* 设置默认属性 */
    width: 100px;height: 100px;
    background-color: green;
    -webkit-transition: all 300ms;
    -moz-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
}
.product-index .editor:hover .editor1 { /* 这是变换属性 */
    width: 200px;
    background-color: skyblue;
}


望采纳

声明:你问我答网所有作品(图文、音视频)均由用户自行上传分享,仅供网友学习交流。若您的权利被侵害,请联系fangmu6661024@163.com