jqery实现一个图标上下滑动效果

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<style type="text/css">
.contain-foot-nav {
width: 33.3%;
float: left;
text-align: center;
position: relative;
}

.contain-foot-nav img {
display: block;
margin: 0 auto;
}

.foot-nav-top {
width: 100%;
height: 120px;
position: absolute;
}
.contain-foot-nav h2{
margin-top: 120px;
}
.contain-foot-nav h3 {
font-size: 16px;
color: #4CD1A2;
}

</style>
<body>
<div class="contain-foot-nav">
<div class="foot-nav-top">
<a href="tel://020-38353308"><img src="img/location.jpg"/></a>
</div>
<h2>联系电话</h2>
<h3>020-38353308</h3>
</div>
<script src="js/jquery-1.9.1.min.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
$(function(){
var set = setInterval(function() {
top();
bottom();       //启动计时器
}, 1500);
top();
bottom();

function top() {
$(".foot-nav-top").animate({
top: "15px"
});
};

function bottom() {
$(".foot-nav-top").animate({
top: "1px"
});
};
$(".foot-nav-top").mouseenter(function() {
clearInterval(set);     //清除计时器
})
$(".foot-nav-top").mouseleave(function() {
set = setInterval(function() {    //启动计时器
top();
bottom();
}, 1500);
})

});
</script>
</body>
</html>

转载于:https://www.cnblogs.com/luoguixin/p/6271924.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值