国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

原生js實(shí)現(xiàn)放大鏡

2019-11-19 17:29:32
字體:
供稿:網(wǎng)友

原理:左邊陰影在左邊圖片上從左到右移動(dòng)的時(shí)候,右邊大框也在右邊大圖片上從左到右移動(dòng)(盡管在視覺、原理和代碼上是相反的);所謂放大,其實(shí)就是一張?jiān)揪秃苄〉膱D對(duì)應(yīng)一張?jiān)揪秃艽蟮膱D。

<!DOCTYPE html><html lang="en"><head>  <meta charset="UTF-8">  <title></title>  <style>    *{      margin:0;      padding:0;    }    .small{      width: 400px;      height: 400px;      position: relative;      background: url(http://www.qdfuns.com/misc.php?mod=attach&genre=editor&aid=7dca2c442134be6a652e087296c8ac80) no-repeat center;      border: 1px solid #ccc;    }    .small .inner{      width: 100px;      height: 100px;      background: yellow;      opacity: 0.5;      filter: alpha(opacity=50);      position: absolute;      left:0;      top:0;      display: none;    }    .big{      width: 400px;      height: 400px;      position: absolute;      left:410px;      top:0;      overflow: hidden;      border: 1px solid #ccc;      display: none;    }    .big img{      width: 200%;      height: 200%;      position: absolute;      left:0;      top:0;    }  </style></head><body><div id="small" class="small">  <div class="inner"></div></div><div id="big" class="big">  <img src="http://www.qdfuns.com/misc.php?mod=attach&genre=editor&aid=d7dec5aeff022ea80c47eb76dc5838d8" alt=""/></div><script>  var small=document.getElementById('small');  var inner=small.getElementsByTagName('div')[0];  var big=document.getElementById('big');  var img=big.getElementsByTagName('img')[0];  //當(dāng)鼠標(biāo)移入small的時(shí)候,inner和big顯示  small.onmouseover=function(){    big.style.display='block';    inner.style.display='block';  };  //當(dāng)鼠標(biāo)在small移動(dòng)的時(shí)候:1)鼠標(biāo)在inner的中間 2)inner跟隨鼠標(biāo)移動(dòng)  small.onmousemove=function(e){    e=e||window.event;    var left=e.clientX-this.offsetLeft-inner.offsetWidth/2;    var top=e.clientY-this.offsetTop-inner.offsetHeight/2;    if(left<=0){      left=0;    }else if(left>=this.offsetWidth-inner.offsetWidth){      left=this.offsetWidth-inner.offsetWidth    }    if(top<=0){      top=0;    }else if(top>=this.offsetHeight-inner.offsetHeight){      top=this.offsetHeight-inner.offsetHeight    }    inner.style.left= left+'px';    inner.style.top= top+'px';    //當(dāng)inner移動(dòng)的時(shí)候,大圖跟著一起移動(dòng),并且,大圖和inner移動(dòng)的方向相反;    //或者理解為:左邊陰影在圖片上從左到右移動(dòng)的時(shí)候,右邊大框也在大圖片上從左到右移動(dòng)(盡管視覺上是相反的)。    img.style.left=left/(small.offsetWidth-inner.offsetWidth)*(big.offsetWidth-img.offsetWidth)+'px';    img.style.top=top/(small.offsetHeight-inner.offsetHeight)*(big.offsetHeight-img.offsetHeight)+'px';  };  //當(dāng)鼠標(biāo)移出的時(shí)候,inner和big隱藏;  small.onmouseout=function(){    big.style.display='none';    inner.style.display='none';  }</script></body></html>

以上就是本文的全部?jī)?nèi)容,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作能帶來一定的幫助,同時(shí)也希望多多支持武林網(wǎng)!

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 瑞丽市| 南投县| 临汾市| 甘泉县| 无为县| 陆良县| 满城县| 江永县| 新闻| 武义县| 泽州县| 高陵县| 兴安县| 固安县| 巩义市| 宁化县| 林周县| 清丰县| 西华县| 舒城县| 石家庄市| 积石山| 仁布县| 克东县| 泾阳县| 财经| 敖汉旗| 邮箱| 惠安县| 河源市| 民县| 锡林郭勒盟| 康乐县| 临邑县| 焉耆| 渝中区| 丁青县| 清流县| 弥勒县| 竹溪县| 双辽市|