+ 3
Zooming in html
How can I make, that I can zoom in a picture in html?
2 ответов
+ 5
//Here is tutorial for that, nicely explained
https://www.w3schools.com/howto/howto_js_image_zoom.asp
0
img:hover
{
transform:scale(1.5);
}
How can I make, that I can zoom in a picture in html?