每个类元素的简单 jquery .hover() 方法
没做过太多jquery,遇到了问题。我想为所有具有 .social-tile 类的 div 绑定悬停事件。我是这样做的:
$(function(){
var social_default = $('.social-tile').css('margin-right');
$('.social-tile').each(function(){
$(this).hover(function(){
$(this).animate({
'margin-right': '0px'
},500);
},function(){
$(this).animate({
'margin-right': social_default
},500);
});
});
});
当我将鼠标悬停在一个元素上时,所有 div 的动画都会被触发,并且它们会同时移动。我只想为我悬停的特定元素设置动画。
也许这里有一个非常简单的修复方法, 谢谢。
haven't done much jquery and ran into a problem. I'd like to bind hover event for all div's with class .social-tile. I do it like this:
$(function(){
var social_default = $('.social-tile').css('margin-right');
$('.social-tile').each(function(){
$(this).hover(function(){
$(this).animate({
'margin-right': '0px'
},500);
},function(){
$(this).animate({
'margin-right': social_default
},500);
});
});
});
When I hover over one element, animations for all divs are triggered and they move all at one time. I'd like to animate only specific element which I hover.
Probably there is a really easy fix here,
thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
试试这个,抱歉 - 工作演示在这里:
http://jsfiddle.net/8vFAD/1/
try this, sorry - working demo here:
http://jsfiddle.net/8vFAD/1/
好吧,你的变量social_default,里面有.socialtile,它将调用分配给它的所有div,将其更改为(this)。
Ok your variable social_default, has .socialtile in it, which will call to all the divs assigned to it, change that to (this).