最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

JS實(shí)現(xiàn)懸浮移動(dòng)窗口(懸浮廣告)的特效

 更新時(shí)間:2013年03月12日 10:57:18   作者:  
頁(yè)面加載完成之后向頁(yè)面插入窗口,之后向窗口插入關(guān)閉按鈕,使用setInterval()函數(shù)觸發(fā)moves()函數(shù)開(kāi)始動(dòng)畫(huà)

js方法:

復(fù)制代碼 代碼如下:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
    <head>
        <title> New Document </title>
        <meta name="Generator" content="EditPlus">
        <meta name="Author" content="">
        <meta name="Keywords" content="">
        <meta name="Description" content="">
        <script type="text/javascript">
            window.onload=function(){
                //寫(xiě)入
                var oneInner = document.createElement("div");
                oneInner.setAttribute("style","background:#663398;position:absolute;width:100px;height:100px;border:solid 3px #2F74A7;cursor:pointer;");
                var oneButton = document.createElement("input");
                oneButton.setAttribute("type","button");
                oneButton.setAttribute("value","x");
                if (oneButton.style.cssFloat)
                {
                    oneButton.style.cssFloat="right"
                }
                else
                {oneButton.style.styleFloat="right"}
                oneInner.appendChild(oneButton);
                document.body.appendChild(oneInner);

                //定時(shí)器
                var a1a = setInterval(moves,100);
                //函數(shù)

                var x = 10;
                var y = 10;

                function moves(){
                    var tops = oneInner.offsetTop
                    var lefts = oneInner.offsetLeft

                    if (lefts>=document.documentElement.clientWidth-oneInner.offsetWidth||lefts<=0)
                    {
                        x=-x
                    }

                    if (tops>=document.documentElement.clientHeight-oneInner.offsetHeight||tops<=0)
                    {
                        y=-y
                    }

                    tops+=y;
                    lefts+=x;

                    oneInner.style.top=tops+"px"
                    oneInner.style.left=lefts+"px"
                }

                //懸停停止
                oneInner.onmouseover=function(){
                    clearInterval(a1a);
                }
                //放手繼續(xù)運(yùn)動(dòng)
                oneInner.onmouseout=function(){
                    a1a =setInterval(moves,100);
                }
                //刪除
                oneButton.onclick=function(){
                    document.body.removeChild(oneInner);
                }
            }
        </script>

    </head>

    <body>


    </body>
</html>

jquery方法:

復(fù)制代碼 代碼如下:

<!DOCTYPE html>
<html>
    <head>
        <title></title>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <script type="text/javascript" src="http://www.fzitv.net/workspace/js/jquery-1.7.min.js"></script>
        <script>
            $(function(){
                //寫(xiě)入div
                $("<div/>",{id:"moveWindow"}).css({width:"200px",height:"200px",border:"solid 3px #2F74A7",background:"#663398",position:"absolute",cursor:"pointer"}).appendTo("body");
                //寫(xiě)入關(guān)閉按鈕
                $("<div/>",{id:"removeMW"}).css({width:"20px",height:"20px",background:"red",float:"right"}).appendTo("#moveWindow");
                //定時(shí)器
                var move = setInterval(moves,100);
                var x= 10;
                var y= 10;

                function moves (){
                    var mw = $("#moveWindow").offset();
                    var lefts =mw.left;
                    var tops = mw.top;

                    if (lefts>=$(window).width()-$("#moveWindow").width()||lefts<=0)
                    {
                        x=-x
                    }

                    if (tops>=$(window).height()-$("#moveWindow").height()||tops<=0)
                    {
                        y=-y
                    }
                    lefts+=x;
                    tops+=y;

                    $("#moveWindow").offset({top:tops,left:lefts});

                }
                //懸停停止運(yùn)動(dòng)
                $("#moveWindow").mouseover(function(){
                    clearInterval(move);
                });
                //移開(kāi)鼠標(biāo)后繼續(xù)運(yùn)動(dòng)
                $("#moveWindow").mouseout(function(){
                    move = setInterval(moves,100);
                });
                //點(diǎn)擊按鈕關(guān)閉
                $("#removeMW").click(function(){
                    $("#moveWindow").remove();
                });
            })
        </script>
    </head>
    <body>
    </body>
</html>

基本思路:

1.頁(yè)面加載完成之后向頁(yè)面插入窗口,之后向窗口插入關(guān)閉按鈕

2.使用setInterval()函數(shù)觸發(fā)moves()函數(shù)開(kāi)始動(dòng)畫(huà)

3.moves函數(shù):首先獲取當(dāng)前窗口位置,之后隨時(shí)間使窗口位移,每當(dāng)位移到游覽器邊緣時(shí)反向運(yùn)動(dòng)

4.添加其他事件:鼠標(biāo)懸停停止運(yùn)動(dòng),鼠標(biāo)離開(kāi)繼續(xù)運(yùn)動(dòng),點(diǎn)擊按鈕關(guān)閉窗口

ps:不建議使用這個(gè)特效,影響用戶體驗(yàn)

希望對(duì)你有所幫助!^_^!~~

相關(guān)文章

最新評(píng)論

临沂市| 浙江省| 嘉禾县| 时尚| 黄石市| 盐山县| 区。| 邢台市| 濮阳市| 娱乐| 邯郸市| 宝应县| 泉州市| 和林格尔县| 乃东县| 宜君县| 浑源县| 呼伦贝尔市| 盐池县| 沁水县| 丘北县| 隆尧县| 绵竹市| 江山市| 承德县| 永福县| 辉县市| 宜兰市| 景谷| 留坝县| 麦盖提县| 定远县| 花垣县| 视频| 东阳市| 宝鸡市| 辽宁省| 长岛县| 象州县| 灵璧县| 正阳县|