首页 > Web开发 > 详细

用js实现的一个小程序(对一块区域的放大,缩小)

时间:2014-04-04 22:12:17      阅读:703      评论:0      收藏:0      [点我收藏+]

//css

<style type="text/css">

#enlarge1{position:absolute;width:100px; height:100px; border:1px solid #000;}
#enlarge2{position:absolute; top:100px; width:100px; height:200px ;margin-top:20px; border:1px solid #000; }
#enlarge3{position:absolute; top:10px; left:110px;width:200px; height:312px; margin-left:10px; margin-top:-2px; border:1px solid #000; }
</style>

//html

<div id="enlarge1"></div>
<div id="enlarge2"></div>
<div id="enlarge3"></div>

//js

<script type="text/javascript">
function enlargeFc(id,x,y){
var option=document.getElementById(id);
var optionWidth=option.clientWidth;
var optionHeight=option.clientHeight;

option.onmouseover=function(){
this.style.width=optionWidth*x+"px";
this.style.height=optionHeight*y+"px";
this.style.background="#0f0";
this.style.zIndex=100000;
}
option.onmouseout=function(){
this.style.width=optionWidth+"px";
this.style.height=optionHeight+"px";
this.style.background="";
this.style.zIndex="auto";
}

}
enlargeFc("enlarge2",1,1);
</script>

//效果

bubuko.com,布布扣

用js实现的一个小程序(对一块区域的放大,缩小),布布扣,bubuko.com

用js实现的一个小程序(对一块区域的放大,缩小)

原文:http://www.cnblogs.com/fangdx/p/3645386.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!