Home > Article > WeChat Applet > 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
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}
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!