jq

代码0.0

1.


<html>
<head>
<script src="jquery/jquery-1.7.1.min.js"></src>
<script type="text/javascript">
$ function(){
    $(".navmenu").mouseover(function(){
    $(this).children("ul").show();
    //$(this).children("ul").css({display:'block'});显示的两种方法 this = navmenu,将this换成navmenu效果一样
    
})
    $(".navmenu").mouseover(function(){
    $(this).children("ul").hide();
    //$(this).children("ul").css({display:'none'});隐藏的两种方法 this = navmenu,将this换成navmenu效果一样
    
})
}
</script>
</head>
<body>
<div class="navmenu">
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
</ul>
</body>
</html>

2.0.0

<!DOCTYPE html>
<html>
<head>
<script src="jquery-1.8.3.min.js"></script>
<script type="text/javascript"> 
$(document).ready(function(){
  $(".flip").click(function(){
    $(".panel").slideUp("slow");
  });
});
$(document).ready(function(){
  $(".fl").click(function(){
    $(".panel").slideDown("slow");
  });
});
$(document).ready(function(){
  $(".fli").click(function(){
    $(".panel").slideToggle("slow");
  });
});
</script>
 
<style type="text/css"> 
div.panel,p.flip
{
margin:0px;
padding:5px;
text-align:center;
background:#e5eecc;
border:solid 1px #c3c3c3;
}
div.panel,
{
height:120px;
}

div.panel,p.flip
{
margin:0px;
padding:5px;
text-align:center;
background:#e5eecc;
border:solid 1px #c3c3c3;
}
div.panel
{
height:120px;
}

div.pa,p.fl
{
margin:0px;
padding:5px;
text-align:center;
background:#e5eecc;
border:solid 1px #c3c3c3;
}
div.pa
{
height:120px;
}

div.pan,p.fli
{
margin:0px;
padding:5px;
text-align:center;
background:#e5eecc;
border:solid 1px #c3c3c3;
}
div.pan
{
height:120px;
}
</style>
</head>
 
<body>


<p class="fli">Toggle</p>
<p class="flip">隐藏</p>
<p class="fl">显示</p>
<div class="panel">


<p>hello world</p>


</div>
 
</body>
</html>

总结:

二级菜单 淡入淡出
知识点:jquery的动画、SlideUP(jquery实现)

SlideDown(),SlideToggle()。

2.jquery的尺寸

内容获取-height()+width()
padding获取-innerheight()+innerwidth()
border获取-outwidth()+outheight()
margin获取-outwidth(true)+outheight(true)。

假如获取一张图片用?-内容获取-height()+width()

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

3通过JQUERY获取元素的宽高

滑动窗口-Slide windows
slideToggle=SlideUp+SlideDown的效果

animate:V 方法用于创建自定义的动画,
animation:N 
jquery动画效果终结
show、hide,toggle,slideup,slideDown,slidetoggle,animate().
w

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值