Get actual image size, after resizing it

后端 未结 3 568
春和景丽
春和景丽 2021-02-05 11:01

I have a page filled with thumbnails, resized with css to 150x150, and when I click on a thumbnail, the page dims, and The image is being shown in it\'s true sizes.

3条回答
  •  情书的邮戳
    2021-02-05 11:27

    you have the 'natural' kws to help you out:

    with js:

    var imageheight = document.getElementById(imageid).naturalHeight;
    

    or with jquery

    var imageheight = $('#' + imageid).naturalHeight;
    

提交回复
热议问题