点击按钮对数据进行操作(2)

本文介绍使用jQuery实现网页元素的动画效果及显示隐藏操作,包括淡入淡出、上下滑动、左右移动等交互功能。
<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
    <script type="text/javascript" src="jquery.1.12.4.js"></script>
    <script>
        $(function(){
            $("#out").click(function(){
              $("#t").slideUp();
            });
            $("#in").click(function(){
                $("#t").slideDown(2020);
            });
            $("#in_out").click(function(){$("#t").slideToggle()});

            $("#myShow").click(function () {
                $("#topImg").show();
            });

            $("#myHide").click(function () {
                $("#topImg").hide();
            });
            $("#myShowOrHide").click(function(){$("#topImg").toggle()});



            $("#moveright100px").click(function(){$("#topImg").animate({"left":"100px"},3000)});

            $("#moveleft100px").click(function(){$("#topImg").animate({"left":"0"},2000);});


        });
    </script>
</head>
<body>

<button id="out">淡出</button>
<br/>
<button id="in">淡入</button>
<br/>
<button id="in_out">点击我,如果隐藏就滑入|否则滑出</button>
<br/>
<button id="myShow">点击我,显示</button>
<br/>
<button id="myHide">点击我,隐藏</button>
<br/>
<button id="myShowOrHide">点击我,如果显示就隐藏|如果隐藏就显示</button>
<br/>
<button id="moveright100px">点击我,图片向右移动100px</button>
<button id="moveleft100px">点击我,图片向左移动100px</button>
<br/>
<br/>

<div id="t" style="font-size: 32px">八维学院</div>
<img src="dou.jpg" id="topImg" style="position: absolute">
</body>
</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值