Home  >  Article  >  WeChat Applet  >  How to put gif into mini program

How to put gif into mini program

尚
Original
2020-03-19 14:34:444939browse

How to put gif into mini program

How to put gif into the mini program:

Upload gif through web-view embedded h5, and then pass the gif address through wx.miniProgram.redirectTo with parameters Return to the publishing page.

Click on the publish page to add an animated image, and it will jump to the upload page

How to put gif into mini program

web-view embedded h5 upload image address

<web-view src="{{h5上传图片页面}}">web-view>

After h5 is uploaded, it will jump back with url

"file" accept="image/gif" type="file" />
----
wx.miniProgram.redirectTo({
  url: `${/photos/photos?GifUrl}=res.key`
})

The publishing page gets the uploaded gif address and displays it

onLoad:function (e) { if(e.GifUrl)upload_img = e.GifUrl}

How to put gif into mini program

The above is the detailed content of How to put gif into mini program. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn