Tell me, please, the jQuery plugin for viewing photos with scaling to fit the size of a custom monitor .
For example, here http://cvetybukety.ru/uslugi_102.html just displays a full-sized image and on a small screen looks awful :(
Tell me, please, the jQuery plugin for viewing photos with scaling to fit the size of a custom monitor .
For example, here http://cvetybukety.ru/uslugi_102.html just displays a full-sized image and on a small screen looks awful :(
<script type="text/javascript"> $(document).ready(function(){ $('img').not('#fullview').click(function(){ $('body').append('<img id="fullview" src="'+$(this).attr('src')+'" style="width: 100%; top: 0; left: 0; position: absolute;"/>'); }); }); </script>
trollface
Check out the jmFullZoom demo
Script found! http://www.ionden.com/widgets/wg/zoom/index2.php
Source: https://ru.stackoverflow.com/questions/43175/
All Articles