91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

js怎么實現導航欄上下動畫效果

發布時間:2022-07-13 13:41:07 來源:億速云 閱讀:133 作者:iii 欄目:開發技術

這篇“js怎么實現導航欄上下動畫效果”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“js怎么實現導航欄上下動畫效果”文章吧。

obj.currentStyle[name] getComputedStyle(obj,false)[name],一個是支持IE 一個支持FE
完美運動js插件,能根據傳進來的值,進行匹配,從而得到了理想的運動效果,也就是運行邏輯。
實現上下動畫動畫效果就是控制元素height的值,通過不斷的修改該值,就能呈現所謂的動畫效果,這里就需要用到定時器

定時器有兩種

重復不斷的定時器 setInterval(fn,time);
延時只在設定時間后只出現一次的定時器 setTimeout(fn,time)
在遍歷傳進的每一個值,需要使用一個boolean來控制是否完成解析,解析成功則返回true,結束定時器,返回false,知道返回true位置

function getStyle(obj, attr)
{
    if(obj.currentStyle)
    {
        return obj.currentStyle[attr];
    }
    else
    {
        return getComputedStyle(obj, false)[attr];
    }
}
function startMove(obj,json,fnEnd){
    if(obj.timer){
        clearInterval(obj.timer);
    };
    obj.timer=setInterval(function(){
        var bStop = true; //假設全部找到
        for(var attr in json){
            var icurr = 0;
            if(attr=='opacity'){//匹配key
                icurr=Math.round(parseFloat(getStyle(obj,attr))*100); //獲取元素的屬性值
            }else{
                icurr=parseInt(getStyle(obj,attr));
            };
            var sPeed = (json[attr]-icurr)/8;
            sPeed=sPeed>0?Math.ceil(sPeed):Math.floor(sPeed);
            if(attr=='opacity'){
                obj.style.filter="alpha(opacity:"+(icurr+sPeed)+")";
                obj.style.opacity=(icurr+sPeed)/100;
            }else{
                obj.style[attr]=icurr+sPeed+'px';
            }
            if(icurr!=json[attr]){
                bStop=false;
            }
        }
        if(bStop){
            clearInterval(obj.timer);
            if(fnEnd){
                fnEnd();
            }
        }
    },30);
}
// alert('dffe');

html布局

<!DOCTYPE html>
<html lang="zh">
<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<meta http-equiv="X-UA-Compatible" content="ie=edge">
	<link rel="stylesheet" type="text/css" href="css/common.css" />
	<script src="js/move.js"></script>
	<script src="js/common.js"></script>
	<title></title>
</head>
<body>
<div id="box">
	<div><a href="javascript:;" class="a01"></a><em>關于</em><span></span></div>
	<div><a href="javascript:;" class="a02"></a><em>招聘</em><span></span></div>
	<div><a href="javascript:;" class="a04"></a><em>產品</em><span></span></div>
	<div><a href="javascript:;" class="a03"></a><em>公司</em><span></span></div>
</div>	
</body>
</html>

css文件

*{
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
}
body{
    background-color: #c1c1c1;
}
#box{
    width: 880px;
    margin: 100px auto;
    overflow: hidden;
}
#box div{
    width: 200px;
    height: 100px;
    float: left;
    overflow: hidden;
    position: relative;
}
#box div a{
    position: absolute;
    left: 0;
    top: 0;
    width: 200px;
    height: 100px;
    display: block;
    /* background-color: red; */
background: url(../images/1.jpg) no-repeat;
}
#box div span{
    display: block;
    width: 200px;
    height: 100px;
    position: absolute;
    background: url(../images/window.png) left top repeat-x;
}
#box div em{
    display: block;
    width: 100%;
    height: 100%;
    background-color: #999;
    position: absolute;
    text-align: center;
    line-height: 100px;
    font-family: Verdana;
    font-style: normal;
    font-size: 30px;
    color: white;
    text-shadow: 2px 1px 4px black;
    top: 0;
}
#box div a.a01{
        /* background: url(../images/1.jpg) 0 5px no-repeat; */
    background-position: 0 5px;
}
#box div a.a02{
        /* background: url(../images/1.jpg) 0 5px no-repeat; */
    background-position: -200px 5px;
}
#box div a.a03{
        /* background: url(../images/1.jpg) 0 5px no-repeat; */
    background-position: -400px 5px;
}
#box div a.a04{
        /* background: url(../images/1.jpg) 0 5px no-repeat; */
    background-position: -600px 5px;
}

window.&omicron;nl&omicron;ad=fn

window.onload=function(){
    var oDiv = document.getElementById('box');
    var aDiv = oDiv.getElementsByTagName('div');
    var aEm = oDiv.getElementsByTagName('em');
        var aEm = oDiv.getElementsByTagName('em');
    for(var i=0;i<aDiv.length;i++)
        {
            aDiv[i].index = i;
            aDiv[i].onmouseover = function()
            {
                startMove(aEm[this.index],{top:-aEm[this.index].offsetHeight})
            }
            aDiv[i].onmouseout = function()
            {
                startMove(aEm[this.index],{top:0})
            }
        }
}

以上就是關于“js怎么實現導航欄上下動畫效果”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

js
AI

盐亭县| 万年县| 衡东县| 平乡县| 佛冈县| 屏山县| 洞口县| 肃北| 政和县| 婺源县| 巍山| 景洪市| 图片| 罗山县| 昌江| 康乐县| 天长市| 清流县| 泗水县| 泰和县| 遂平县| 通州市| 嫩江县| 满洲里市| 东兴市| 内黄县| 登封市| 孝感市| 浙江省| 河间市| 中山市| 涟水县| 米脂县| 子洲县| 高尔夫| 延边| 奉贤区| 岳池县| 西盟| 绥滨县| 富阳市|