17day-动画&事件

jquery动画

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

$('#div1').animate({
width:300,
height:300
},1000,swing,function(){
alert('done!');
});

参数可以写成数字表达式:

$('#div1').animate({
width:'+=100',
height:300
},1000,swing,function(){
alert('done!');
});

尺寸相关、滚动事件

  1. 获取和设置元素的尺寸

    width()、height() 获取元素width和height
    innerWidth()、innerHeight() 包括padding的width和height
    outerWidth()、outerHeight() 包括padding和border的width和height
    outerWidth(true)、outerHeight(true) 包括padding和border以及margin的width和height

2.获取元素相对页面的绝对位置

offse()

3.获取可视区高度

$(window).height();

4.获取页面高度

$(document).height();

5.获取页面滚动距离

(document).scrollTop();(document).scrollTop();(document).scrollLeft();

页面滚动事件

$(window).scroll(function(){
......
})

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() 用户离开页面

绑定事件的其他方式

('#div1').bind('mouseover click', function(event) {
alert($(this).html());
});
});

取消绑定事件

$('#div1').bind('mouseover click', function(event) {
alert($(this).html());

    // $(this).unbind();
    $(this).unbind('mouseover');

});

click 点击事件;

重复切换 (添加 / 删除 style 样式 )

重复切换:toggleClass

jquery属性操作

1、html() 取出或设置html内容

2、text() 取出或设置text内容

3、attr() 取出或设置某个属性的值

jquery特殊效果

fadeIn() 淡入

fadeOut() 淡出

fadeToggle() 切换淡入淡出

hide() 隐藏元素

show() 显示元素

toggle() 依次展示或隐藏某个元素

slideDown() 向下展开

slideUp() 向上卷起

slideToggle() 依次展开或卷起某个元素

引入一个外部js 《script type = "tex/javascript" src = "js/javascript--路径.js"》《/script》

innerhtml -- 元素里面包含的内容;
样式用css;用,逗号隔开;

绑定click事件

例如:$('#btn1').click(function(){

// 内部的this指的是原生对象

// 使用jquery对象用 $(this)

})

多选框默认勾选《input type = "checkbox" id = "check" checked = "checked"》多选

prop 和 attr 的区别

    prop 专门读取 true 和 False 的属性值;

    attr 是读取其他的 除了true 和 false 的属性值;

你可能感兴趣的:(17day-动画&事件)