您的位置:首页技术文章
文章详情页

transform - CSS3 transition在chrome下的BUG

【字号: 日期:2023-07-21 18:56:20浏览:61作者:猪猪

问题描述

一段很简单的代码:

p{width:100px;height:100px;background:red;transition:all .5s ease;}p:hover{transform:rotate(30deg);}

在chrome 45下,鼠标移动到p上时,偶尔会没有过渡效果,而是直接旋转到30度,离开的时候也会偶尔没有过渡效果,直接回到0度。在firefox下却没有这个问题。

问题解答

回答1:

.p{transition:all .3s ease}.p:hover{transition:all .3s ease;transform:rotate(360deg)}

鼠标经过时过渡,鼠标离开后也要写过渡

回答2:

写的没问题啊,更新浏览器吧

标签: CSS
相关文章: