大家好,我在这里使用 css3 过渡效果我试图将它用于边框样式我的 css
.round{
width:50px;
height:50px;
border-radius:50px;
border:5px solid #ccc;
cursor:pointer;
background-color:#f00;
-moz-transition: 0.5s ease;
-ms-transition: 0.5s ease;
-o-transition: 0.5s ease;
transition:all 0.5s ease 0s
}
.round:hover{
border-style:dotted;
border-color:#666;
background-color:#ccc;
}
将鼠标悬停在圆形时,我需要更改边框样式,但它在 moz 浏览器中不起作用,我需要通过旋转方式更改边框样式。
这是我的小提琴