国内最全IT社区平台 联系我们 | 收藏本站
华晨云阿里云优惠2
您当前位置:首页 > web前端 > htmlcss > jquery 上下左右滑动

jquery 上下左右滑动

来源:程序员人生   发布时间:2015-01-04 09:38:17 阅读次数:3828次

不说空话了,很简单,直接上代码。


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf⑻" />
<title>无标题文档</title>
<script type="text/javascript" src="jquery⑴.11.2.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#btn").unbind().click(function(){
$("#first").hide();
$("#sec").css("left","⑵00px").animate({"left":"0px"},500).show();
});

$("#btn2").unbind().click(function(){
$("#sec").hide();
$("#first").css("left","200px").animate({"left":"0px"},500).show();
});

$("#btn3").unbind().click(function(){
$("#first").hide();
$("#sec").css("top","200px").animate({"top":"0px"},500).show();
});

$("#btn4").unbind().click(function(){
$("#sec").hide();
$("#first").css("top","⑵00px").animate({"top":"0px"},500).show();
});
});
</script>
</head>


<body>
<div style="width:200px; height:200px;">
<div id="first" style="text-align:center; width:200px; height:200px;position:absolute;">
    <p>第1页</p>
        <p>第1页</p>
        <p>第1页</p>
        <p>第1页</p>
        <p>第1页</p>
    </div>
    <div id="sec" style="text-align:center; width:200px; height:200px; display:none;position:absolute;">
        <p>第2页</p>
        <p>第2页</p>
        <p>第2页</p>
        <p>第2页</p>
        <p>第2页</p>
    </div>
</div>
<div style="width:200px; height:50px;">
<input type="button" value="向右转动" id="btn"/>
    <input type="button" value="向左转动" id="btn2"/>
    <input type="button" value="向上转动" id="btn3"/>
    <input type="button" value="向下转动" id="btn4"/>
</div>
</body>
</html>


特别要注意:标红的地方1定要加上,否则不会出现效果。

生活不易,码农辛苦
如果您觉得本网站对您的学习有所帮助,可以手机扫描二维码进行捐赠
程序员人生
------分隔线----------------------------
分享到:
------分隔线----------------------------
关闭
程序员人生