发布于 2017-01-17 12:55:58 | 177 次阅读 | 评论: 0 | 来源: 网友投递

这里有新鲜出炉的Javascript教程,程序狗速度看过来!

JavaScript客户端脚本语言

Javascript 是一种由Netscape的LiveScript发展而来的原型化继承的基于对象的动态类型的区分大小写的客户端脚本语言,主要目的是为了解决服务器端语言,比如Perl,遗留的速度问题,为客户提供更流畅的浏览效果。


想必大家对图片翻转效果都有所了解吧,其实很容易实现的,下面有个不错的示例,喜欢的朋友可以参考下
以下为程序代码:
 
<!DOCTYPE html /> 
<html> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" /> 
<title>图片翻转效果</title> 
<style type="text/css"> 
.box {overflow:hidden;position:relative;} 
.txt {width:100%;height:100%;background:#f51146;font-size:12px;position:absolute;top:-100%;color:white; 
text-align:center;filter:alpha(Opacity=80);-moz-opacity:0.8;opacity:0.8;} #b1 {background:url(http://biyuan.tk/u/upload/201310221457326875.jpg);width:232px;height:232px;} #b2 {background:url(http://biyuan.tk/u/upload/201310221457486875.jpg);width:110px;height:110px;} #b3 {background:url(http://biyuan.tk/u/upload/201310221458149843.jpg);width:110px;height:110px;} </style> </head> <body> <div id="obj"> <div class="box" id="b1"><div class="txt">文字说明<br />文字说明</br />文字</div></div> <div class="box" id="b2"><div class="txt">文字说明<br />文字说明</br />文字</div></div> <div class="box" id="b3"><div class="txt">文字说明<br />文字说明</br />文字</div></div> </div> <script type="text/javascript"> function Show(o, s, v){ clearInterval(Show.prototype["a" + v]); Show.prototype["a" + v] = setInterval(function(){ if(s == -1) { if(o.offsetTop <= -o.parentNode.offsetHeight) { o.style.top = -o.parentNode.offsetHeight + "px"; return clearInterval(Show.prototype["a" + v]); } } else { if(o.offsetTop >= -10) { o.style.top = 0; return clearInterval(Show.prototype["a" + v]); } } o.style.top = (o.offsetTop * 1 + 10 * s) + "px"; }, 10); } var igs = document.getElementById('obj').getElementsByTagName("div"); for(var i = 0; i < igs.length; i ++) { if(igs[i].className == "box") { (function(x){ igs[x].onmouseover = function(){ Show(this.childNodes[0], 1, x); this.onmouseout = function() { Show(this.childNodes[0], -1, x); } } })(i); } } </script> </body> </html>

效果预览:http://biyuan.tk/u/upload/201310221500310000.html

最新网友评论  共有(0)条评论 发布评论 返回顶部

Copyright © 2007-2017 PHPERZ.COM All Rights Reserved   冀ICP备14009818号  版权声明  广告服务