前端第十七天

$('#div1').animate({

    width:300,

    height:300

},1000,swing,function(){

    alert('done!');

});

$('#div1').animate({

    width:'+=100',

    height:300

},1000,swing,function(){

    alert('done!');

});


width()、height() 获取元素width和height

innerWidth()、innerHeight()  包括padding的width和height 

outerWidth()、outerHeight()  包括padding和border的width和height 

outerWidth(true)、outerHeight(true)  包括padding和border以及margin的width和height

offset() 获取元素相对页面的绝对位置

$(window).height();获取可视区高度

$(document).height();获取页面高度

$(document).scrollTop(); 获取页面滚动距离

$(document).scrollLeft();


$(window).scroll(function(){

    ...... 

})页面滚动事件

你可能感兴趣的:(前端第十七天)