基于jQuery制作小图标上下滑动特效

一个小图标特效,挺有趣的,代码也很容易懂。

 jQ小图标上下滑动特效:

代码如下:

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title></title>

</head>

<link rel="stylesheet" href="css/normalize.css">

<style>

.tubiao{

width: 300px;

height: 100px;

margin: 100px auto;

}

a{

position: relative;

padding: 10px;

display: inline-block;

text-decoration: none;

color: #000;

text-align: center;

}

i{

position: absolute;

left: 5px;

top: -20px;

opacity: 1;

}

</style>

<body>

<div class="tubiao">

<a href="#"><i><img src="imges/小图标/1.png" alt="1" ></i><p>我的</p></a>

<a href="#"><i><img src="imges/小图标/2.png" alt="2" ></i><p>你的</p></a>

<a href="#"><i><img src="imges/小图标/3.png" alt="3" ></i><p>他的</p></a>

<a href="#"><i><img src="imges/小图标/4.png" alt="4" ></i><p>好的</p></a>

<a href="#"><i><img src="imges/小图标/5.png" alt="5" ></i><p>坏的</p></a>

</div>/*css和html不解释*/

<script src="js库/jquery.js"></script>/*jquery库,路径这里用汉字,我是看的方便,实际建议用英文*/

<script>

$(function(){

$("a").mouseenter(function(){<br> /*mouseenter和mouseover 都是 触摸事件,前者是不冒泡,后者必然冒泡,解释还是有点差强人意,前者也会发生不一样的情况,就是超出子元素范围,点在祖先元素还是会发生*/

$(this).find("i").stop().animate({top:"-30px",opacity:"0"},300,function(){ <br> /*这里关键说一个,就是在anmiate()前面加stop(),是取消上一次事件,再继续,接下来的*/

$(this).css({top:"-15px"});<br> /*这里是再次出现的关键,就是因为opacity是0嘛,我们就先悄悄的把top值,移到正常位置的下面一点点,然后再让他出现,即产生了绕了180deg的错觉*/

$(this).animate({top:"-20px",opacity:"1"},300)

});

})

})

</script>

</body>

</html>

以上是 基于jQuery制作小图标上下滑动特效 的全部内容, 来源链接: utcz.com/z/325092.html

回到顶部