javascript實(shí)現(xiàn)放大鏡功能
本文實(shí)例為大家分享了javascript實(shí)現(xiàn)放大鏡功能的具體代碼,供大家參考,具體內(nèi)容如下
描述:當(dāng)鼠標(biāo)在小圖片上移動(dòng)時(shí),通過(guò)捕捉鼠標(biāo)在小圖片上的位置, 使放大鏡的移動(dòng)方向與大圖的水平和垂直方向相反
如何設(shè)計(jì)
頁(yè)面元素 技術(shù)要點(diǎn):事件捕捉和定位 難點(diǎn):計(jì)算涉及技術(shù)
onmouseover:當(dāng)鼠標(biāo)指針移動(dòng)到指定的對(duì)象上時(shí)發(fā)生 onmouseout:鼠標(biāo)指針移出指定對(duì)象時(shí)發(fā)生 onmousemove:鼠標(biāo)指針移動(dòng)時(shí)發(fā)生 offsetLeft | offsetTop | offsetWidth | offsetHeight event.clientX | event.clientY偏移量與style.left
style.left返回字符串,例如30px,而offsetLeft返回?cái)?shù)字30。 style.left可以讀和寫,offsetLeft是只讀的。如果我們想改變div的位置,我們可以修改style.left. style.left應(yīng)事先定義,否則值為空。需要考慮
如何使小畫面上的放大鏡與大圖同步移動(dòng) IE兼容性問(wèn)題代碼實(shí)現(xiàn)
<!DOCTYPE html><html lang='en'><head> <meta charset='UTF-8'> <meta name='viewport' content='width=device-width, initial-scale=1.0'> <title>Magnifier Effect</title> <style> *{ margin: 0; padding: 0; } #wrap{ width: 400px; height: 255px; margin: 50px; border: 1px solid #ccc; display: block; position: relative; } #small-box{ position: relative; z-index: 1; } #float-box{ width: 160px; height: 120px; position: absolute; background-color: #ffffcc; border:1px solid #ccc; filter: alpha(opacity = 50); opacity: .5; display: none; } #mask{ position: absolute; display: block; width: 400px; height: 255px; z-index: 10; background-color: #ffffff; filter: alpha(opacity = 0); opacity: 0; cursor: move; } #big-box{ position: absolute; top: 0; left: 460px; width: 400px; height: 300px; overflow: hidden; border: 1px solid #ccc; z-index: 1; display: none; } #big-box img{ position: absolute; z-index: 5; } </style></head><script> // 頁(yè)面加載完畢之后執(zhí)行 window.onload = function(){ // 獲取父元素wrap, 小盒子,遮罩層, 放大鏡, 大盒子, 大圖片 var wrap = document.getElementById(’wrap’); var smallBox = document.getElementById(’small-box’); var mask = document.getElementById(’mask’); var floatBox = document.getElementById(’float-box’); var bigBox = document.getElementById(’big-box’); var bigImg = bigBox.getElementsByTagName(’img’)[0]; console.log(wrap, smallBox, mask, floatBox, bigBox, bigImg); // 鼠標(biāo)移動(dòng)到小盒子上時(shí), 放大鏡顯示, 大盒子顯示 mask.onmouseover = function(){ floatBox.style.display = ’block’; bigBox.style.display = ’block’; } // 鼠標(biāo)移出小盒子時(shí), 放大鏡隱藏, 大盒子隱藏 mask.onmouseout = function(){ floatBox.style.display = ’none’; bigBox.style.display = ’none’; } // 添加鼠標(biāo)移動(dòng)事件 mask.onmousemove = function(ev){ // 獲取當(dāng)前鼠標(biāo)移動(dòng)的位置并考慮IE兼容性 var _event = ev || window.event; // 獲取放大鏡向左移動(dòng)的距離 var left = _event.clientX - wrap.offsetLeft - smallBox.offsetLeft - floatBox.offsetWidth / 2; var top = _event.clientY - wrap.offsetTop - smallBox.offsetTop - floatBox.offsetHeight / 2; // console.log(left, top); // 考慮邊界情況 if(left < 0){ left = 0; }else if(left > (mask.offsetWidth - floatBox.offsetWidth)){ left = mask.offsetWidth - floatBox.offsetWidth; } if(top < 0){ top = 0; }else if(top > (mask.offsetHeight - floatBox.offsetHeight)){ top = mask.offsetHeight - floatBox.offsetHeight; } floatBox.style.left = left + ’px’; floatBox.style.top = top + ’px’; // calculate percentage var percentX = left / (mask.offsetWidth - floatBox.offsetWidth); var percentY = top / (mask.offsetHeight - floatBox.offsetHeight); // calculate displacement of big image, big image has opposite direction of magnifying glass bigImg.style.left = -percentX * (bigImg.offsetWidth - bigBox.offsetWidth) + ’px’; bigImg.style.top = -percentY * (bigImg.offsetHeight - bigBox.offsetHeight) + ’px’; } }</script><body> <div id='wrap'> <div id='small-box'> <div id='mask'></div> <div id='float-box'></div> <img src='http://www.aoyou183.cn/bcjs/img/macbook-small.jpg' alt='smallMac'> </div> <div id='big-box'> <img src='http://www.aoyou183.cn/bcjs/img/macbook-big.jpg' alt='bigMac'> </div> </div></body></html>
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。
相關(guān)文章:
1. Android 實(shí)現(xiàn)徹底退出自己APP 并殺掉所有相關(guān)的進(jìn)程2. Vue實(shí)現(xiàn)仿iPhone懸浮球的示例代碼3. vue使用moment如何將時(shí)間戳轉(zhuǎn)為標(biāo)準(zhǔn)日期時(shí)間格式4. 一個(gè) 2 年 Android 開發(fā)者的 18 條忠告5. js select支持手動(dòng)輸入功能實(shí)現(xiàn)代碼6. Spring的異常重試框架Spring Retry簡(jiǎn)單配置操作7. Android studio 解決logcat無(wú)過(guò)濾工具欄的操作8. 什么是Python變量作用域9. PHP正則表達(dá)式函數(shù)preg_replace用法實(shí)例分析10. vue-drag-chart 拖動(dòng)/縮放圖表組件的實(shí)例代碼
