Day15 滚动

作者: 会会_3a05 | 来源:发表于2018-07-25 10:29 被阅读0次

    通过animate方法可以设置元素某属性值上的动画,可以设置一个或多个属性值,动画执行完成后会执行一个函数。

    $('#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

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

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

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

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

    $(document).scrollLeft();

    jquery事件 :

    blur() 元素失去焦点

    focus() 元素获得焦点

    change() 表单元素的值发生变化

    click() 鼠标单击

    dblclick() 鼠标双击

    mouseover() 鼠标进入(进入子元素也触发)

    mouseout() 鼠标离开(离开子元素也触发)

    mouseenter() 鼠标进入(进入子元素不触发)

    mouseleave() 鼠标离开(离开子元素不触发)

    hover() 同时为mouseenter和mouseleave事件指定处理函数

    mouseup() 松开鼠标

    mousedown() 按下鼠标

    mousemove() 鼠标在元素内部移动

    keydown() 按下键盘

    keypress() 按下键盘

    keyup() 松开键盘

    load() 元素加载完毕

    ready() DOM加载完成

    resize() 浏览器窗口的大小发生改变

    scroll() 滚动条的位置发生变化

    select() 用户选中文本框中的内容

    submit() 用户递交表单

    toggle() 根据鼠标点击的次数,依次运行多个函数

    unload() 用户离开页面

    相关文章

      网友评论

        本文标题:Day15 滚动

        本文链接:https://www.haomeiwen.com/subject/zptpmftx.html