开发者

Expanding the dimension of an element

开发者 https://www.devze.com 2022-12-08 16:18 出处:网络
I have a thumbnail. When i click on it, how can i enlarge it. I know t开发者_JAVA技巧here are many plugins that do this, but is there simple code that serve the purpose. If you\'re referring to a ligh

I have a thumbnail. When i click on it, how can i enlarge it. I know t开发者_JAVA技巧here are many plugins that do this, but is there simple code that serve the purpose.


If you're referring to a lightbox type scenario where the image pops up in front of the content, that's not possible with simple code. You'll need a plugin like Colorbox for that.

If you're talking about simply changing the dimensions of an image, you can do something like this:

$('#img1').width(500).height(500); // Change "500" to whatever size you want.
0

精彩评论

暂无评论...
验证码 换一张
取 消