div的移动特效

简介:                     #d1         {             width:100px;             height:100px;             position:absolute...
<!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>
    <title></title>
    <script src="Scripts/jquery-1.4.1-vsdoc.js" type="text/javascript"></script>
    <style type="text/css">
        #d1
        {
            width:100px;
            height:100px;
            position:absolute;
            background-color:Red;
            left:10px;
            top:50px;
            <!--filter:alpha(opacity=0);-->
            }
    </style>
    <script type="text/javascript">
        $(function () {
            $("#btn").click(function () {
                //animate里面的参数是按照先静后动来执行的,所以有一个参数是函数参数,先执行前面的后执行动画里面的
                $("#d1").animate({ "left": 300, "top": 300, "opacity": 100 }, 1000).animate({ "width": 300, "height": 300, "opacity": 10 }, 1000, function () {
                    $(this).css("background-color", "blue");
                });
            })
            //左移
            $("#btn1").click(function () {
                $("#d1").animate({ "left": "-=80" },1000);


            })
            //右移
            $("#btn2").click(function () {
                $("#d1").animate({ "left": "+=80" }, 1000);


            })
        })
    </script>
</head>
<body>
    <input id="btn" type="button" value="动画" />
    <input id="btn1" type="button" value="向左"/>
    <input id="btn2" type="button" value="向右"/>
    <div id="d1">
    </div>
    <audio src="铃声 - 听海.mp3" autoplay="autoplay"></audio><br />
    <video src="说好的及格呢.mp4" width="100px" height="100px" controls="controls" autoplay="autoplay"></video>
</body>
</html>
相关文章
|
6月前
jQuery+CSS3自动轮播焦点图特效源码
jQuery+CSS3自动轮播焦点图特效源码
61 1
jQuery+CSS3自动轮播焦点图特效源码
|
前端开发 程序员
给我一个 div + 三行 css,还你一个超级马里奥
要绘制马里奥,我们需要照着图,将图进行格子化,然后一个格子一个格子的绘制。。。。 那是不可能的! 作为一个程序员,这么多色块都要手动绘制,开玩笑,这不是折磨人吗。
|
前端开发 JavaScript 程序员
基于H5+css+JavaScript实现button悬停时边框滑动
基于H5+css+JavaScript实现button悬停时边框滑动
158 0
基于H5+css+JavaScript实现button悬停时边框滑动
|
JavaScript 前端开发
jQuery案例:图文滑动手风琴特效
jQuery案例:图文滑动手风琴特效
140 0
jQuery案例:图文滑动手风琴特效
CSS3自定义Checkbox特效
在线演示 本地下载
950 0
|
移动开发 HTML5
HTML5/CSS3淡入淡出滑块焦点图
在线演示 本地下载
907 0
jQuery+CSS3动画相册特效
在线演示 本地下载
800 0
CSS3分享按钮动画特效
在线演示 本地下载
881 0
纯CSS3文字Loading动画特效
在线演示       本地下载
1994 0