jQuery .animate width:'show'/'hide'来自另一边

时间:2012-10-04 15:16:06

标签: jquery jquery-animate

简单的问题。我在右上角有一些窗口工具,我希望它们在悬停时显示。很简单,我已经用

完成了
d.animate({ width: 'show',opacity:0.7},120);

一切都很好,但从左到右滑动。如果它从右到左进行,它看起来会更好。是否可以在不扩展代码的情况下进行简单的更改?

1 个答案:

答案 0 :(得分:2)

http://jsfiddle.net/thHZ9/

如果要绝对定位元素,请确保将其放置在右侧而不是左侧:

#cool{
    position:absolute;
    right:10px;
    top:10px;

    ...
}​