当您将鼠标悬停在缩略图上时,我正在尝试(使用非常有限的 jQuery 知识:) 为 DIV 设置动画。我想我可以使用 REL 中的图像 ID 用该 REL 为 DIV 设置动画。出于某种原因,当我尝试提醒 div REL 时,我最终得到的只是 OBJECT OBJECT,这有点让我发疯。这是我使用的:
$(function(){
var screenCenter = $(window).width() / 2;
var projectID = this.id;
$(document).mousemove(function(e){
if (e.pageX < screenCenter) {
}
else if (e.pageX > screenCenter) {
$("#portfolio_thumbs img").hover(function() {
//$("div[rel=" + projectID + "]").animate({left:'100px'},{queue:false,duration:300});
alert($('div[rel=" + projectID + "]'))
});
}
$('#portfolio_thumbs img').mouseout(function() {
$(".project_description").animate({left:'-440px'},{queue:false,duration:300});
});
});
我究竟做错了什么?