Ergo:为什么这行不通?
我正在尝试制作动画功能,它必须根据其名称更改 css div 的位置。例如,产品 1 不需要更改其顶部位置,产品 2 需要更改,产品 3 需要更改更多。
已经为此苦苦挣扎了好几个小时!
if($(this).attr("class") = "product1")
{
$(this).cssAnimate({height: '100%',marginBottom:'-350px'}, {duration: 400});
}
else if($(this).attr("class") = "product2")
{
$(this).cssAnimate({top:'-176px',height: '100%',marginBottom:'-350px'}, {duration: 400});
}
else if($(this).attr("class") = "product3")
{
$(this).cssAnimate({top:'-352px',height: '100%',marginBottom:'-350px'}, {duration: 400});
}
else
{
return false;
}