Jquery Cycle + Firefox Squishing Images

前端 未结 7 1377
走了就别回头了
走了就别回头了 2020-12-10 07:41

I am running jQuery Cycle for an image gallery. View the link: Here

My problem is that the images are getting squished when viewed in firefox. The problem disappears

7条回答
  •  轮回少年
    2020-12-10 08:35

    If you're using a database to populate the slideshow you could try accessing the image dimensions from the image itself.

    For example, using django you can use

     width="{{ xxx.image.width }}px"  height="{{ xxx.image.height }}px" 
    

    in your img tag.

提交回复
热议问题