jQuery实现小动画

来源:互联网 发布:集合和数组的优缺点 编辑:程序博客网 时间:2024/06/07 21:45

 <script type="text/javascript">

       

        //展开图片或收缩图片
        $(function () {

            $('#Button3').click(function () {
                $('#img').show(5000);
            })

            $('#Button4').click(function () {
                $('#img').hide(5000);
            })
        })
    </script>
</head>
<body>
    <img alt="" id="img"  src="images/16.jpg" />
        <input id="Button3" type="button" value="Show Img" />

        <input id="Button4" type="button" value="Hide Img" />

</body>