마우스 호버의 jQuery 이미지 돋보기

이 자습서에서는 마우스를 올리면 jQuery 이미지 돋보기가 표시됩니다. 이미지 돋보기를 사용하면 마우스를 가져가면 이미지를 확대할 수 있습니다. jquery를 사용하면 마우스 호버로 이미지를 확대/축소할 수 있습니다. 또한 마우스 클릭으로 jquery 이미지 확대/축소를 할 수 있습니다.

이 예제에서 사용자는 마우스 휠로 이미지를 직접 확대하거나 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


출력 :




다음을 좋아할 수도 있습니다.
  • Read Also : Laravel REST API CRUD Tutorial
  • Read Also : Laravel 8 Generate PDF Using DomPDF
  • Read Also : How To Hide Toolbar In Summernote Editor
  • 좋은 웹페이지 즐겨찾기