我正在尝试为div设置动画,让它围绕y轴旋转180度。当我调用以下代码时,我得到一个jQuery错误:
$("#my_div").animate({
"transform": "rotateY(180deg)",
"-webkit-transform": "rotateY(180deg)",
"-moz-transform": "rotateY(180deg)"
}, 500, function() {
// Callback stuff here
});
});
它说“未捕获的TypeError:无法读取未定义的属性'defaultView'并且说它在jQuery文件本身中......我做错了什么?
答案 0 :(得分:4)
试试这个:
$('#myDiv').animate({ textIndent: 0 }, {
step: function(go) {
$(this).css('-moz-transform','rotate('+go+'deg)');
$(this).css('-webkit-transform','rotate('+go+'deg)');
$(this).css('-o-transform','rotate('+go+'deg)');
$(this).css('transform','rotate('+go+'deg)');
},
duration: 500,
complete: function(){ alert('done') }
});
答案 1 :(得分:4)
您还可以在CSS类中预定义旋转并使用jQuery添加/删除该类:
CSS:
#my_div {
-moz-transition: all 500ms ease;
-o-transition: all 500ms ease;
-webkit-transition: all 500ms ease;
transition: all 500ms ease;
}
.rotate {
-moz-transform: rotate(180deg);
-o-transform: rotate(180deg);
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
}
jQuery的:
$("#my_div").addClass('rotate');
答案 2 :(得分:1)
jQuery无法为转换属性提供开箱即用的动画。
但您可以使用.animate()
设置自定义属性的动画,并使用step
function“手动”进行转换:
var $myDiv = $("#my_div"),
ccCustomPropName = $.camelCase('custom-animation-degree');
$myDiv[0][ccCustomPropName ] = 0; // Set starting value
$myDiv.animate({ccCustomPropName : 180},
{
duration: 500,
step: function(value, fx) {
if (fx.prop === ccCustomPropName ) {
$myDiv.css('transform', 'rotateY('+value+'deg)');
// jQuery will add vendor prefixes for us
}
},
complete: function() {
// Callback stuff here
}
});
有关工作示例,请参阅this fiddle(点击蓝色框)。
这与undefined's answer类似,但它不会滥用真正的CSS属性。
注意:自定义属性的名称应为jQuery.camelCase()名称,因为.animate()
在内部使用camelCased名称,因此,将使用属性的当前值存储camelCased名称和fx.prop
也将是camelCased名称。
答案 3 :(得分:0)
忘掉jQuery的$.animate()
,而不是$.velocity()
。 Velocity.js是jQuery的动画扩展。它使用与jQuery相同的语法,并允许您为CSS3制作动画,例如3D变换,平移,旋转,褪色,过渡,倾斜......任何你想要的东西。而且因为它足够聪明,在可能的情况下使用CSS3而不是JS,它的动画效果也会更好。我不明白为什么jQuery还没有这样做!