마우스 호버의 jQuery 이미지 돋보기
3634 단어 jqueryjavascripthtmlphp
이 예제에서 사용자는 마우스 휠로 이미지를 직접 확대하거나 javascript를 사용하여 터치 장치에서 핀치 줌을 사용하거나 jquery를 사용하여 마우스 오버 시 이미지 확대/축소를 수행할 수 있습니다.
또한 줌 이미지에 다양한 유형의 플러그인을 사용할 수 있습니다. 여기에서는 zoom.js CDN을 사용하여 이미지를 확대/축소했습니다. 사용자가 호버에서 전체 크기 이미지를 표시하고 마우스 이동으로 세부 정보를 볼 수 있도록 하는 zoom.js jQuery를 사용합니다.
이제 마우스 호버에서 jquery 이미지 돋보기를 보고 마우스 호버 효과에서 이미지를 확대해 보겠습니다.
예시 :
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-zoom/1.7.21/jquery.zoom.js"></script>
<style>
body {
margin: 20px;
border: 1px solid grey;
}
.container {
display: block;
padding: 0px;
}
.contain {
position: fixed;
right: 10%;
top: 25%;
width: 200px;
height: 220px;
margin-top: 25px;
}
img {
width: 250px;
height: 250px;
margin: 20px;
}
b{
margin-left: 20px;
}
</style>
</head>
<body>
<center>
<h1>jQuery Image Magnifier On Mouse Hover - Techsolutionstuff</h1>
</center>
<div class="container-fluid">
<b>Move your Cursor Over the Image</b>
<div class="parent">
<img src="https://laravelnews.imgix.net/laravel-news__logo.png?ixlib=php-3.3.1">
</div>
<span class="contain"></span>
</div>
<script>
$(document).ready(function() {
$('.parent').css('width', $('img').width());
$('img').parent().zoom({
magnify: 1,
target: $('.contain').get(0)
});
});
</script>
</body>
</html>
Read Also : How to Add and Delete Rows Dynamically using jQuery
출력 :
다음을 좋아할 수도 있습니다.
Reference
이 문제에 관하여(마우스 호버의 jQuery 이미지 돋보기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/techsolutionstuff/jquery-image-magnifier-on-mouse-hover-16m텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)