github 的 README.md 中没有显示来自第三方网站的大 gif?

Big gif from a third party site does not show in the README.md of github?

我想在 github 的 README.md 中显示 gif。 当目标 gif 较小时效果很好:

<img src="targetGifUrl" width="400">

但是当gif很大时,显示效果不理想,以gif为例。当我将它添加到 README.md 时,它只显示:

点击后,会显示一个带有提示的网站

Content length exceeded

由于gif来自第三方网站,我无法更改其大小。

那么,是否可以在不保存和调整大小的情况下显示这个大 gif

看起来 someone else 以前遇到过这个问题,

When I open this link in Firefox, I only get the text "Content length exceeded".

并且 here 是修复它的提交。

Add gif locally

-![Sample Gif](http://i.imgur.com/______.gif)

+<img src="/art/sample.gif?raw=true" width="200px">

看起来您所要做的就是保存 gif 并将其放入您的存储库中,无需调整大小,只需 link 到您存储库中的版本即可。请注意宽度是如何指定的,raw=true 是一个包含的参数。

将 Gif 文件放在 git 存储库的本地目录中。然后在自述文件中调用它。

例如,如果您刚刚在根目录中创建了一个名为 demo 的文件夹,并将 demo.gif 放入其中。然后你可以在你的自述文件中这样调用它。

![Demo File](https://github.com/username/repo-name/blob/master/demo/demo.gif)

例如:

![Screenshot](https://github.com/codemaker2015/React-native-map-view/blob/master/demo/demo.gif)