이번에는 jquery를 사용하여 돋보기 효과를 만드는 방법과 jquery로 돋보기 효과를 만들 때 사용할 주의사항이 무엇인지 보여드리겠습니다. 다음은 실제 사례입니다.
jquery로 작성된 두 가지 돋보기 효과는 플러그인을 사용하지 않습니다. 생각의 조절과 명확성. 객체지향 방식으로 작성되지 않아 초보자도 이해하기 쉽습니다. 더 이상 고민하지 말고 코드를 살펴보겠습니다. 사진은 여기에 업로드되지 않으며 직접 찾을 수 있습니다. 비율을 찾는 것이 가장 좋으므로 효과가 더 좋습니다.
<body> <p id="father"> <p id="container"> <img src="img/400_1.jpg" style="display: block;"> <img src="img/400_2.jpg" > <p class="shade"></p> </p> <p class="small first"><img src="img/50_1.jpg"></p> <p class="small second"><img src="img/50_2.jpg"></p> </p> <p class="big"> <img src="img/800_1.jpg" style="display: block;"> <img src="img/800_2.jpg"> </p> </body>
css code
*{padding: 0; margin: 0;} #father .small{width: 50px; height: 50px; border: 2px solid #ccc; bottom: 0; position: absolute;} #father .second{left: 70px;} .third{left: 140px;} #father{position: relative; top: 100px; left: 50px; height: 460px;} #container{position: absolute; width: 400px; height: 400px;} #container img{position: absolute; display: none;} .shade{width: 200px; height: 200px; position: absolute; background: #000; opacity: 0.4; top: 0; left: 0; display: none;} .big{width: 400px; height: 400px; position: absolute; top: 100px; overflow: hidden; left: 500px; display: none;} .big img{width: 800px; height: 800px; position: absolute; display: none;}
js code
<script type="text/javascript" src='js/jquery-1.12.4.min.js'></script> <script type="text/javascript"> $(function () { changePic('.first',0); changePic('.second',1); var shadeWidth = $('.shade').width(),//阴影的宽度 shadeHeight = $('.shade').height(),//阴影的高度 middleWidth = $('#container').width(),//容器的宽度 middleHeight = $('#container').height(),//容器的高度 bigWidth = $('.big').width(),//放大图片盒子的宽度 bigHeight = $('.big').height(),//放大图片盒子的高度 rateX = bigWidth / shadeWidth,//放大区和遮罩层的宽度比例 rateY = bigHeight / shadeHeight;//放大区和遮罩层的高度比例 //当鼠标移入与移出时阴影与放大去显现/消失 $('#container').hover(function() { $('.shade').show(); $('.big').show(); }, function() { $('.shade').hide(); $('.big').hide(); }).mousemove(function(e) {//当鼠标移动时,阴影和放大区图片进行移动 //记录下光标距离页面的距离 var x = e.pageX, y = e.pageY; //设置遮罩层的位置 $('.shade').offset({ top: y-shadeHeight/2, left: x-shadeWidth/2 }); //获取遮罩层相对父元素的位置 var cur = $('.shade').position(), _top = cur.top, _left = cur.left, hdiffer = middleHeight - shadeHeight, wdiffer = middleWidth - shadeWidth; if (_top < 0) _top = 0; else if (_top > hdiffer) _top = hdiffer; if (_left < 0) _left = 0; else if (_left > wdiffer) _left =wdiffer; //判断完成后设置遮罩层的范围 $('.shade').css({ top: _top, left: _left }); //设置放大区图片移动 $('.big img').css({ top: - rateY*_top, left: - rateX*_left }); });; //封装的改变图片显示的函数 function changePic (element,index) { $(element).click(function() { $('#container img').eq(index).css('display', 'block').siblings().css('display', 'none'); $('.big img').eq(index).css('display', 'block').siblings().css('display', 'none'); }); } });
위 내용은 흔히 사용되는 내용이며, 다음은 원본 이미지를 기준으로 확대한 것입니다
htm
<body> <p id="father"> <p id="container"> <img src="img/400_1.jpg" style="display: block;"> <img src="img/400_2.jpg" > <img src="img/400_3.jpg" > <p class="shade"> <img src="img/800_1.jpg" style="display: block;"> <img src="img/800_2.jpg"> <img src="img/800_3.jpg"> </p> </p> <p class="small first"><img src="img/50_1.jpg"></p> <p class="small second"><img src="img/50_2.jpg"></p> <p class="small third"><img src="img/50_3.jpg"></p> </p> </body>
css code
에에js 코드
*{padding: 0; margin: 0;} #father .small{width: 50px; height: 50px; border: 2px solid #ccc; bottom: 0; position: absolute;} #father .second{left: 70px;} .third{left: 140px;} #father{position: relative; top: 100px; left: 50px; height: 460px;} #container{position: absolute; width: 400px; height: 400px;} #container img{position: absolute; display: none;} .shade{width: 200px; height: 200px; position: absolute; top: 0;left: 0; display: none; border-radius: 50%; overflow: hidden; background: #000;} .shade img{display: none; width: 800px; height: 800px; position: absolute;}
이 기사의 사례를 읽으신 후 방법을 마스터하셨다고 생각합니다. 더 흥미로운 정보를 보려면 PHP 중국어 웹사이트의 다른 관련 기사를 주목하세요!
추천 자료:
jquery는 스타일이 포함된 HTML 태그를 추가합니다
jquery가 이벤트를 동적으로 생성된 태그에 바인딩하는 방법
jQuery는 가져오는 방법 P 태그의 값을 수정하세요
위 내용은 Jquery를 사용하여 돋보기 효과를 만드는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!