请教一下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}) 这样写是什么意思。
展开
 我来答
匿名用户
2015-05-10
展开全部
// 排除class为buyao的子元素
$('div>:not(.buyao)')
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
藍色雷客
2015-05-08 · TA获得超过122个赞
知道小有建树答主
回答量:204
采纳率:0%
帮助的人:164万
展开全部
你好

{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)'
});
}
});
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式