這篇文章主要為大家展示了“如何實現(xiàn)HTML5頁面中長按保存圖片功能”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“如何實現(xiàn)HTML5頁面中長按保存圖片功能”這篇文章吧。
10年的廣饒網(wǎng)站建設(shè)經(jīng)驗,針對設(shè)計、前端、開發(fā)、售后、文案、推廣等六對一服務(wù),響應(yīng)快,48小時及時工作處理。全網(wǎng)營銷推廣的優(yōu)勢是能夠根據(jù)用戶設(shè)備顯示端的尺寸不同,自動調(diào)整廣饒建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設(shè)計,從而大程度地提升瀏覽體驗。創(chuàng)新互聯(lián)從事“廣饒網(wǎng)站設(shè)計”,“廣饒網(wǎng)站推廣”以來,每個客戶項目都認(rèn)真落實執(zhí)行。
長按保存圖片是現(xiàn)在一些宣傳頁H5中很常見的需求,但是js沒有這樣的能力,所以要么借助android或ios的原生能力,要么用canvas自己畫一個(截屏),相比較原生成本太高,且必須依賴于app,相對于流傳性很廣且跨平臺的H5來說不合時宜,所以 canvas 成為我們常用的手段。
下面是詳細(xì)的步驟:
1. html2canvas截屏
保存的圖片節(jié)點最好是img標(biāo)簽: 想要截屏的節(jié)點最好是img標(biāo)簽的圖片,經(jīng)測試如果是 background-image 會有點模糊,需要特別注意下。
npm i html2canvas --save import html2canvas from 'html2canvas'; // 想要保存的圖片節(jié)點 const dom = document.querySelector('img'); // 創(chuàng)建一個新的canvas const Canvas = document.createElement('canvas'); const width = document.body.offsetWidth; // 可見屏幕的寬 const height = document.body.offsetHeight; // 可見屏幕的高 const scale = window.devicePixelRadio; // 設(shè)備的devicePixelRadio // 將Canvas畫布放大scale倍,然后放在小的屏幕里,解決模糊問題 Canvas.width = width * scale; Canvas.height = height * scale; Canvas.getContext('2d').scale(scale, scale); html2canvas(dom, { canvas: Canvas, scale, useCORS: true, logging: true, width: width + 'px', hegiht: height + 'px', }).then((canvas) => { const context = canvas.getContext('2d'); // 關(guān)閉抗鋸齒形 context.mozImageSmoothingEnabled = false; context.webkitImageSmoothingEnabled = false; context.msImageSmoothingEnabled = false; context.imageSmoothingEnabled = false; // canvas轉(zhuǎn)化為圖片 canvas2Image(canvas, canvas.width, canvas.height); });
2. canvas2Image轉(zhuǎn)化為圖片
一般情況下轉(zhuǎn)為jpeg格式就很不錯了。
canvas2Image(canvas, canvas.width, canvas.height) { const retCanvas = document.createElement('canvas'); const retCtx = retCanvas.getContext('2d'); retCanvas.width = width; retCanvas.height = height; retCtx.drawImage(canvas, 0, 0, width, height, 0, 0, width, height); const img = document.createElement('img'); img.src = retCanvas.toDataURL('image/jpeg'); // 可以根據(jù)需要更改格式 return img; }
3. 長按保存圖片
先實現(xiàn)一個長按的方法,長按之后把生成的圖片append到body,透明浮在屏幕上。
// 封裝一個長按方法 longPress(fn) { let timeout = 0; const $this = this; for (let i = 0; i < $this.length; i++) { $this[i].addEventListener('touchstart', () => { timeout = setTimeout(fn, 800); // 長按時間超過800ms,則執(zhí)行傳入的方法 }, false); $this[i].addEventListener('touchend', () => { clearTimeout(timeout); // 長按時間少于800ms,不會執(zhí)行傳入的方法 }, false); } } // 添加生成的圖片到body const img = canvas2Image(canvas, canvas.width, canvas.height); document.body.appendChild(img); img.style.cssText = "width:100%;height:100%;position:absolute;top:0;left:0;right:0;bottom:0;opacity:0;";
4. 完整代碼如下
$.fn.longPress = function(fn) { let timeout = 0; const $this = this; for (let i = 0; i < $this.length; i++) { $this[i].addEventListener('touchstart', () => { timeout = setTimeout(fn, 800); // 長按時間超過800ms,則執(zhí)行傳入的方法 }, false); $this[i].addEventListener('touchend', () => { clearTimeout(timeout); // 長按時間少于800ms,不會執(zhí)行傳入的方法 }, false); } }; $('img').longPress(() => { saveImg(); });saveImg() { // 想要保存的圖片節(jié)點 const dom = document.querySelector('img'); // 創(chuàng)建一個新的canvas const Canvas = document.createElement('canvas'); const width = document.body.offsetWidth; // 可見屏幕的寬 const height = document.body.offsetHeight; // 可見屏幕的高 const scale = window.devicePixelRatio; // 設(shè)備的devicePixelRatio // 將Canvas畫布放大scale倍,然后放在小的屏幕里,解決模糊問題 Canvas.width = width * scale; Canvas.height = height * scale; Canvas.getContext('2d').scale(scale, scale); html2canvas(dom, { canvas: Canvas, scale, useCORS: true, logging: true, width: width + 'px', hegiht: height + 'px', }).then((canvas) => { const context = canvas.getContext('2d'); // 關(guān)閉抗鋸齒形 context.mozImageSmoothingEnabled = false; context.webkitImageSmoothingEnabled = false; context.msImageSmoothingEnabled = false; context.imageSmoothingEnabled = false; // canvas轉(zhuǎn)化為圖片 const img = canvas2Image(canvas, canvas.width, canvas.height); document.body.appendChild(img); img.style.cssText = "width:100%;height:100%;position:absolute;top:0;left:0;right:0;bottom:0;opacity:0;"; } } canvas2Image(canvas, width, height) { const retCanvas = document.createElement('canvas'); const retCtx = retCanvas.getContext('2d'); retCanvas.width = width; retCanvas.height = height; retCtx.drawImage(canvas, 0, 0, width, height, 0, 0, width, height); const img = document.createElement('img'); img.src = retCanvas.toDataURL('image/jpeg'); // 可以根據(jù)需要更改格式 return img; }
剛開始做的時候也是網(wǎng)上一堆文章亂看,不斷的試錯,最后愉快的實現(xiàn)了長按保存圖片的功能,做完才發(fā)現(xiàn)也很簡單哈,這篇文章完整的介紹了整個流程,拿走不謝!
以上是“如何實現(xiàn)HTML5頁面中長按保存圖片功能”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!