Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to write the code for the preview effect of uploading pictures on JS+HTML5?

2025-01-20 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)05/31 Report--

Today, I would like to share with you the relevant knowledge of how to write the code for previewing pictures uploaded by JS+HTML5. The content is detailed and the logic is clear. I believe most people still know too much about this, so share this article for your reference. I hope you can get something after reading this article. Let's take a look.

The sample code is as follows:

Html5 Image upload Preview # preview {width: 300px; height: 300px; overflow: hidden;} # preview img {width: 100%; height: 100% } function preview1 (file) {var img = new Image () Url = img.src = URL.createObjectURL (file) var $img = $(img) img.onload = function () {URL.revokeObjectURL (url) $('# preview'). Empty (). Append ($img)} function preview2 (file) {var reader = new FileReader () reader.onload = function (e) {var $img = $('

'). Attr ("src" E.target.result) $('# preview'). Empty (). Append ($img)} reader.readAsDataURL (file)} $(function () {$('[type=file]')) .change (function (e) {var file = e.target.files [0] preview1 (file)})) above is "JS+HTML5 upload picture preview" How to write the code of the effect? all the contents of this article. Thank you for reading! I believe you will gain a lot after reading this article. The editor will update different knowledge for you every day. If you want to learn more knowledge, please pay attention to the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report