Как сделать следующий код отзывчивым для всех изображений на странице?
Got this code and was wondering if it was possible to make it responsive of all images on the page. So would work on any device with the zoom. The code is an image zoom like you find on Amazon etc. And would like to make all images responsive if possible. Plus have the zoom work if that is doable. Any help is appreciated and thanks in advance.
<!Doctype html> <html> <head> <title>Demo Example</title> <script src="js/jquery-1.6.js"></script> <script src="js/jquery.jqzoom-core.js"></script> <link href="css/jquery.jqzoom.css" rel="stylesheet" /> </head> <body style=""> <div style="position:relative;top:200px;left:300px;width:600px;"> <a href="images/bike.jpg" class="minipic" title="Cartoon Bike"><img src="images/bikethumb.jpg" title="Bike"/></a> <a href="images/yummy.png" class="minipic" title="Apple"><img src="images/yummythumb.png" title="apple"/></a> <script type="text/javascript"> $(document).ready(function () { $('.minipic').jqzoom({ zoomType: 'standard', lens: true, preloadImages: false, alwaysOn: false, zoomHeight: 250, zoomWidth:250 }); }); </script> </div> </body> </html>
Что я уже пробовал:
Не уверен, что можно или нет сделать приведенный выше код отзывчивым, или нет
F-ES Sitecore
Изменить
$('.minipic')
к
$('компания IMG')
Хотя это, вероятно, будет иметь плохие побочные эффекты.