请教一下jquery选择器 这样写是什么意思? 30
$({deg:0}).animate({deg:angle},{duration:duration,easing:easing,step:function(now){$e...
$({deg: 0}).animate({deg: angle}, {
duration: duration,
easing: easing,
step: function(now) {
$elem.css({
transform: 'rotate(' + now + 'deg)'
});
},
complete: complete || $.noop
});
其中$({deg:0}) 这样写是什么意思。 展开
duration: duration,
easing: easing,
step: function(now) {
$elem.css({
transform: 'rotate(' + now + 'deg)'
});
},
complete: complete || $.noop
});
其中$({deg:0}) 这样写是什么意思。 展开
2个回答
2015-05-10
展开全部
// 排除class为buyao的子元素
$('div>:not(.buyao)')
$('div>:not(.buyao)')
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你好
{deg:0} 是代表一个 object
{deg:0} 是代表一个 object
追问
那如果这么写$({deg:0})是什么意思
追答
范例: ( demo: http://jsfiddle.net/TrueBlueAussie/cfmzau1w/ )
I'm a div!
// Create a pseudo jQuery object (not connected to a DOM element)
var po = $({
deg: 0
});
// This is just the target object we want to change
$elem = $('#result');
// Use animate on the object, to make use of the step callback
po.animate({
deg: 360
}, {
duration: 5000,
step: function (now) {
// Take the computed value and use it on a real element!
$elem.css({
transform: 'rotate(' + now + 'deg)'
});
}
});
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询