<!DOCTYPE html>
<html>
<head>
<title>Alive Time</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script>
<script src="code.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap.min.js"></script>
</head>
<body>
<i class="fa fa-cog" style="font-size:100px"></i>
<i class="fa fa-arrow-right" style="font-size:100px"></i>
</body>
</html>
----------------------------------------------------------------------------
.fa-cog{
margin: 10% 50%;
color: red;
/*-moz-transition: all 0.5s linear;
-webkit-transition: all 0.5s linear;
transition: all 0.5s linear;*/
}
.down {
-moz-transform:rotate(180deg);
-webkit-transform:rotate(180deg);
transform:rotate(180deg);
}
--------------------------------------------------------------------------------------------------------------
$(document).ready(function(){
$(".fa-cog").on('mouseenter',function(){
$(this).animate({rotate:180},{
step:function(now,fx){
/*$(this).css({' -moz-transform':'rotate('+now+'deg)',
'-webkit-transform':'rotate('+now+'deg)',
'transform':'rotate('+now+'deg)'});*/
$(this).css('-webkit-transform','rotate('+now+'deg)');
$(this).css('-moz-transform','rotate('+now+'deg)');
$(this).css('transform','rotate('+now+'deg)');
},duration:'slow'},'linear');
});
});
伙计们我试图使用jquery的animate()方法来旋转一个齿轮。我知道我可以让一个类使用一些转换,转换然后添加或删除该类。但我想在这里使用animate()。 stackoverflow上的几个docs说我们实际上不必使用真正的CSS属性,比如text-index或border-spacing,而是你可以指定一个假的CSS属性,比如rotation或my-awesome-property,否则。使用不会成为未来实际CSS属性的风险可能是个好主意。我试过在我的代码中找不到任何错误。忽略我已注释掉的代码。
答案 0 :(得分:3)
问题出在这一行:
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script>
在你的情况下,你不能使用瘦身版的jQuery,因为这个版本是没有动画。只需将其替换为:
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
答案 1 :(得分:1)
我可以看到你正在使用不包含动画库的瘦身版jQuery。请使用完整版的jQuery。
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>