jQuery在鼠标经过触发动画 10
1个回答
展开全部
这种方法你的代码有问题, "myfirst 3s"后面应该没有分号 【;】,不过推荐你用css来实现
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>test</title>
<style>
*{ padding:0;margin:0;font-size:12px; }
.abs11{width:25px;height:25px;cursor: pointer;background-color:#fad;line-height:25px;margin:10px auto;
-webkit-transition: -webkit-transform 0.5s ease-out;-moz-transition: -moz-transform 0.5s ease-out;-o-transition: -o-transform 0.5s ease-out;-ms-transition: -ms-transform 0.5s ease-out;}
.abs11:hover{
-webkit-transform: rotate(180deg);-moz-transform: rotate(180deg);-o-transform: rotate(180deg);-ms-transform: rotate(180deg);transform: rotate(180deg);
}
</style>
</head>
<body>
<div class="abs11"></div>
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询