部分jQuery常用的动画函数,整理了一下,在做交互式页面的时候挺有用的
.CSS('a','12px');
.css({
a:'12px',
b:'#fff'
});
.show();
.hide();
.toggle();
.fadeIn();
.fadeOut();
.fadeToggle();
.slideDown();
.slideUp();
.slideToggle();
.text('string');
.animate({
a:'40px',
b:'ccc'
},200)
.fadeTo(600,0.4);
然后又整理了一些animate函数能够操作的css属性,其实也是从网上其他地方找来的(http://blog.csdn.net/goodshot/article/details/8648706):
backgroundPosition
borderWidth
borderBottomWidth
borderLeftWidth
borderRightWidth
borderTopWidth
borderSpacing
margin
marginBottom
marginLeft
marginRight
marginTop
outlineWidth
padding
paddingBottom
paddingLeft
paddingRight
paddingTop
height
width
maxHeight
maxWidth
minHeight
maxWidth
font
fontSize(在animate函数的css参数指定并不同于标准css属性,例如这个css标准是:font-size。同理上
面很多也是这样的情况)
bottom
left
right
top
letterSpacing
WordSpacing
lineHeight
textIndent
opacity
新闻热点
疑难解答