web笔记(4.16)

1.淡入淡出动画,二级菜单(jQuery实现)




    
    Title
    
    
    


出现
隐藏
toggle
helloword

效果图:
web笔记(4.16)_第1张图片
2.slide window:滑动窗口
animate():方法用于创建自定义的动画
jQuery动画效果总结:
显示:show(),隐藏:hide(),显示与隐藏:toggle()
向上滑动:slideUP(),向下滑动:slideDown(),上下合并:slideToggle()
animate()

知识点:jQuery的动画,slideUP(),slideDown(),slidetoggle()

jQuery尺寸:

width()height()—获取Element(内容)
innnerWidth() innerHeight()—获取padding(内边距)
outwidth() outheight()—获取border (边框)
outwidth(true) outheight(true)—获取margin

width():设置或返回元素的宽度(不包括:内边距、边框、外边框)
height():设置或返回元素的高度(不包括:内边距、边框、外边距)

通过jQuery获取元素的宽高:

显示div元素尺寸

你可能感兴趣的:(web笔记(4.16))