码迷,mamicode.com
首页 > 其他好文 > 详细

实现点赞动态效果

时间:2017-12-03 22:48:19      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:har   return   min   透明   fun   app   abs   lan   tag   

点赞的动态效果,源码如下:

============== URL.py ================

url(r‘^zan.html$‘, views.zan),

 

============== views.py ===============

def zan(request):
return render(request,‘zan.html‘)

============== HTML =================

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
.item{
height:100px;
border: 1px solid rebeccapurple;
}
.zan{
height:30px;
width: 30px;
background-color: #252c34;
color: white;
position: relative;
cursor: pointer;
}

.zan span{
position: absolute;
color: red;
font-weight: bold;

}
</style>

</head>
<body>
<div>
<div class="item">
<div class="zan">赞
</div>
</div>
<div class="item">
<div class="zan">赞</div>
</div>
<div class="item">
<div class="zan">赞</div>
</div>
<div class="item">
<div class="zan">赞</div>
</div>
</div>
<script src="/static/jquery-2.1.4.min.js"></script>
<script>
$(function () {
$(‘.zan‘).click(function () {
var fz = 12; //font-size
var tp = 5; //top
var lf = 5; //left
var op = 1; //opacity 透明度

var tag = document.createElement(‘span‘);
tag.innerHTML = ‘+1‘;
tag.style.color = ‘green‘;
tag.style.fontSize = fz+‘px‘;
tag.style.top = tp+‘px‘;
tag.style.left = lf+‘px‘;
tag.style.opacity = op;
$(this).append(tag);

var obj = setInterval(function () {
fz += 5; //font-size
tp -= 5; //top
lf += 5; //left
op -= 0.2; //opacity 透明度

tag.style.color = ‘green‘;
tag.style.fontSize = fz+‘px‘;
tag.style.top = tp+‘px‘;
tag.style.left = lf+‘px‘;
tag.style.opacity = op;

if(op<0){
clearInterval(obj);
$(tag).remove();
}
}, 100)

})
})

</script>

</body>
</html>
 

实现点赞动态效果

标签:har   return   min   透明   fun   app   abs   lan   tag   

原文地址:http://www.cnblogs.com/yucaikang/p/7967550.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!