我想把这个gif添加到一个GitHub风味markdown文件。如果不能在GitHub中完成,是否有可能在另一个版本的markdown中完成?


当前回答

使用HTML的img标签,然后给出源url。

<img src="https://...thumbs-up.gif">

其他回答

减价备忘单:

你可以将它添加到你的repo并使用image标签引用它:

Inline-style: 
![alt text](https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo Title Text 1")

Reference-style: 
![alt text][logo]

[logo]: https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo Title Text 2"

内联样式:

参考格式:


或者,您可以直接使用url:

![](http://www.reactiongifs.us/wp-content/uploads/2013/10/nuh_uh_conan_obrien.gif)

有GIF文件。 推送GIF文件到你的github回购 点击该文件在github回购,以获得github地址的GIF 在你的README文件中: ! [alt文本](链接)

在下面的例子: ! [grab-landing-page] (https://github.com/winnie1312/grab/blob/master/grab-landingpage-winnie.gif)

将url从

https://github.com/nikhith265/submit_button_group/blob/master/attachments/gif/sample_gif.gif

to

https://raw.githubusercontent.com/nikhith265/submit_button_group/298c26b5a3fcfe936f16deef0e8712c2fdc1b635/attachments/gif/sample_gif.gif

注意:确保从url中删除/blob

然后使用img标签,如下所示将gif添加到。md

<img src="https://raw.githubusercontent.com/nikhith265/submit_button_group/298c26b5a3fcfe936f16deef0e8712c2fdc1b635/attachments/gif/sample_gif.gif" alt="gif" width="300" height="540">

如果您可以提供SVG格式的图像(它是一个图标而不是照片),则可以使用SVG SMIL动画对其进行动画处理,SVG绝对是GIF图像(甚至其他格式)的最佳替代方案。

与其他图像格式一样,SVG可以与标准标记或HTML <img>元素一起使用:

![image description](path/in/repository/to/image.svg)
<img src="path/in/repository/to/image.svg" width="128"/>

从本地上传:

将您的.gif文件添加到Github存储库的根目录并推送更改。 访问README.md [Alt text](name-of-gif-file.gif) / ![](name-of-gif-file.gif) 应该会看到Commit和gif。

使用url显示gif:

访问README.md [Alt text](https://sample/url/name-of-gif-file.gif) 应该会看到Commit和gif。

希望这能有所帮助。