How to put gif into mini program

Release: 2020-03-19 14:34:44
Original
4973 people have browsed it

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>
Copy after login

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`
})
Copy after login

The publishing page gets the uploaded gif address and displays it

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

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!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!