如果大家进过拉钩网的话一定会对他们的网站首页影响深刻,首页的穿墙广告效果是非常炫酷的,那么这个穿墙广告的效果怎么实现呢?今天我们就带大家来操作一下。用css3来实现穿墙效果的广告。
nbsp;html>Title *{margin:0; padding:0; list-style:none;}ul{ overflow:hidden; width:630px; margin:100px auto;}ul li{ float:left; position:relative; width:200px; height:200px; background:#ccc; margin:5px; overflow:hidden;}ul li span{ position:absolute; width:100%; height:100%; background:rgba(255,0,0,0.3); left:-200px; top:0;}function getStyle(obj,sName){ return (obj.currentStyle||getComputedStyle(obj,false))[sName];}function move(obj,json,options){ options = options||{}; options.duration = options.duration||700; options.easing = options.easing||'ease-out'; var start = {}; var dis = {}; for(var name in json){ start[name] = parseFloat(getStyle(obj,name)); dis[name] = json[name]-start[name]; } var count = Math.floor(options.duration/30); var n = 0; clearInterval(obj.timer); obj.timer = setInterval(function(){ n++; for(var name in json){ switch(options.easing){ case 'linear': var cur = start[name]+dis[name]*n/count; break; case 'ease-in': var a = n/count; var cur = start[name]+dis[name]*Math.pow(a,3); break; case 'ease-out': var a = 1-n/count; var cur = start[name]+dis[name]*(1-Math.pow(a,3)); break; } if(name=='opacity'){ obj.style.opacity = cur; obj.style.filter = 'alpha(opacity:'+cur*100+')'; }else{ obj.style[name] = cur+'px'; } } if(n==count){ clearInterval(obj.timer); options.complete&&options.complete(); } },30);}function a2d(n){ return n*180/Math.PI;}function hoverDir(ev,obj){ var a = ev.clientX-obj.offsetLeft-obj.offsetWidth/2; var b = obj.offsetTop+obj.offsetHeight/2-ev.clientY; return Math.round((a2d(Math.atan2(b,a))+180)/90)%4;}function through(obj){ var oS = obj.children[0]; obj.onmouseenter = function(ev){ var oEvent = ev||event; var dir = hoverDir(oEvent,obj); switch(dir){ case 0: //左 oS.style.left = '-200px'; oS.style.top = 0; break; case 1: //下 oS.style.left = 0; oS.style.top = '200px'; break; case 2: //右 oS.style.left = '200px'; oS.style.top = 0; break; case 3: //上 oS.style.left = 0; oS.style.top = '-200px'; break; } move(oS,{left:0,top:0}); }; obj.onmouseleave = function(ev){ var oEvent = ev||event; var dir = hoverDir(oEvent,obj); switch(dir){ case 0: move(oS,{left:-200,top:0}); break; case 1: move(oS,{left:0,top:200}); break; case 2: move(oS,{left:200,top:0}); break; case 3: move(oS,{left:0,top:-200}); break; } };}window.onload = function(){ var aLi = document.getElementsByTagName('li'); for(var i=0;i<aLi.length;i++){ through(aLi[i]); }};
登录后复制
相信看了以上代码你已经清楚了这种穿墙广告的奥秘。更多精彩请关注【创想鸟】其它相关文章!
相关阅读:
HTML怎么实现数字焦点图轮播代码
立即学习“前端免费学习笔记(深入)”;
HTML怎么实现数字焦点图轮播代码
立即学习“前端免费学习笔记(深入)”;
HTML怎么实现数字焦点图轮播代码
立即学习“前端免费学习笔记(深入)”;
以上就是CSS3里怎么实现首页穿墙广告效果的详细内容,更多请关注【创想鸟】其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。
发布者:PHP中文网,转转请注明出处:https://www.chuangxiangniao.com/p/3121381.html