How to display GIF's in laravel

后端 未结 2 1727
灰色年华
灰色年华 2021-01-23 10:35

I\'m using Firefox Browser, tried all PNG\'s, JPG\'s and all were working, except GIF.

Here\'s the thing, if I test

相关标签:
2条回答
  • 2021-01-23 11:12

    Your gif should work in an img-tag. If you upload your code to a server you have to change the path from localhost to anything other, maybe this causes the problem.

    img {
      height: 200px;
      width:auto;
    }
    <img src="https://im3.ezgif.com/tmp/ezgif-3-0a7fd40adb02.gif" alt="test">

    0 讨论(0)
  • 2021-01-23 11:22

    This is most likely to be caused by an ad-blocker or extension.

    Try disabling them 1 by 1 and see if the image loads.

    Or try an incognito browser.

    0 讨论(0)
提交回复
热议问题