js页面点击爱心弹出效果

看到有些网站在文章点赞的时候会做一个类似+1这种慢慢变大变淡的淡出效果,我就想着自己能不能搞一个其他物件淡出的效果,作为页面的装饰,想一想没事点点鼠标,还可以看到有东西出来,然后消失,会让网页不会显得那么单调。

做这个效果有几个要点:

1、爱心的绘制

对于爱心的绘制可以用图片,可以用canvas画,也可以用css来写样式。刚开始我在纠结是用canvas来画还是用css,用canvas画的话晓得爱心稍微清晰点,但是css做的话小的爱心晓得有点模糊。最后还是选择用css来做,因为用canvas画需要生成爱心动态大小的canvas画布,这样对于后期的变大效果来说就加大了复杂程度,我们需要在改变canvas画布长宽的同时,重绘画布。但是用css就简单了很多。那么用css怎么写呢?

首先我们需要一个元素


<div class="heart"></div>

;

然后一些样式

.heart{
width: 100px;
height: 100px;
margin: 100px;
position: relative;
background: #f00;
transform: rotate(45deg);
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-o-transform: rotate(45deg);
-ms-transform: rotate(45deg);
}
.heart:before,.heart:after{
content: '';
position: absolute;
width: inherit;
height: inherit;
background: #f00;
border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-o-border-radius: 50%;
-ms-border-radius: 50%;
}
.heart:before{
left: -50px;
}
.heart:after{
top: -50px;
}

这样一个红色的爱心就出来了,具体为什么这样写就不多说了。

2、requestAnimationFrame来实现流畅的动画

最原始的方法实现动画我们可以使用window.setTimout()或者window.setInterval()通过不断更新元素的状态位置等,但是前提是画面的更新频率要达到每秒60次才能让肉眼看到流畅的动画效果(实际情况是不同浏览器的渲染效率是不一样的)。通过requestAnimationFrame这个新的API我们可以方便的实现跨浏览器的流畅动画,但是不同浏览器对其实现有自己的特性。

window.requestAnimationFrame = (function(){
return window.requestAnimationFrame || 
window.webkitRequestAnimationFrame ||
window.mozRequestAnimationFrame ||
window.oRequestAnimationFrame ||
window.msRequestAnimationFrame ||
function (callback){
setTimeout(callback,1000/60);
}
})();

接下来的工作就是实时绘制了,以下是实现代码:

(function(window,document,undefined){
var hearts = [];
window.requestAnimationFrame = (function(){
return window.requestAnimationFrame || 
window.webkitRequestAnimationFrame ||
window.mozRequestAnimationFrame ||
window.oRequestAnimationFrame ||
window.msRequestAnimationFrame ||
function (callback){
setTimeout(callback,1000/60);
}
})();
init();
function init(){
css(".heart{width: 10px;height: 10px;position: fixed;background: #f00;transform: rotate(45deg);-webkit-transform: rotate(45deg);-moz-transform: rotate(45deg);}.heart:after,.heart:before{content: '';width: inherit;height: inherit;background: inherit;border-radius: 50%;-webkit-border-radius: 50%;-moz-border-radius: 50%;position: absolute;}.heart:after{top: -5px;}.heart:before{left: -5px;}");
attachEvent();
gameloop();
}
function gameloop(){
for(var i=0;i&lt;hearts.length;i++){
if(hearts[i].alpha &lt;=0){
document.body.removeChild(hearts[i].el);
hearts.splice(i,1);
continue;
}
hearts[i].y--;
hearts[i].scale += 0.004;
hearts[i].alpha -= 0.013;
hearts[i].el.style.cssText = "left:"+hearts[i].x+"px;top:"+hearts[i].y+"px;opacity:"+hearts[i].alpha+";transform:scale("+hearts[i].scale+","+hearts[i].scale+") rotate(45deg);background:"+hearts[i].color;
}
requestAnimationFrame(gameloop);
}
function attachEvent(){
var old = typeof window.onclick==="function" && window.onclick;
window.onclick = function(event){
old && old();
createHeart(event);
}
}
function createHeart(event){
var d = document.createElement("div");
d.className = "heart";
hearts.push({
el : d,
x : event.clientX - 5,
y : event.clientY - 5,
scale : 1,
alpha : 1,
color : randomColor()
});
document.body.appendChild(d);
}
function css(css){
var style = document.createElement("style");
style.type="text/css";
try{
style.appendChild(document.createTextNode(css));
}catch(ex){
style.styleSheet.cssText = css;
}
document.getElementsByTagName('head')[0].appendChild(style);
}
function randomColor(){
return "rgb("+(~~(Math.random()*255))+","+(~~(Math.random()*255))+","+(~~(Math.random()*255))+")";
}
})(window,document);

将以上代码保存为js文件,直接引入就可以使用了哦,点击页面任意位置就可以看到效果!

 

  • 支付宝二维码 支付宝
  • 微信二维码 微信

本文地址: /page-heart.html

版权声明: 本文为原创文章,版权归 逐梦个人博客 所有,欢迎分享本文,转载请保留出处!

相关文章