日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 前端技术 > HTML >内容正文

HTML

html5图片长按保存,一文彻底解决HTML5页面中长按保存图片功能

發布時間:2023/12/10 HTML 35 豆豆
生活随笔 收集整理的這篇文章主要介紹了 html5图片长按保存,一文彻底解决HTML5页面中长按保存图片功能 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

$.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,則執行傳入的方法

}, false);

$this[i].addEventListener('touchend', () => {

clearTimeout(timeout); // 長按時間少于800ms,不會執行傳入的方法

}, false);

}

};

$('img').longPress(() => {

saveImg();

});saveImg() {

// 想要保存的圖片節點

const dom = document.querySelector('img');

// 創建一個新的canvas

const Canvas = document.createElement('canvas');

const width = document.body.offsetWidth; // 可見屏幕的寬

const height = document.body.offsetHeight; // 可見屏幕的高

const scale = window.devicePixelRatio; // 設備的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');

// 關閉抗鋸齒形

context.mozImageSmoothingEnabled = false;

context.webkitImageSmoothingEnabled = false;

context.msImageSmoothingEnabled = false;

context.imageSmoothingEnabled = false;

// canvas轉化為圖片

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'); // 可以根據需要更改格式

return img;

}

總結

以上是生活随笔為你收集整理的html5图片长按保存,一文彻底解决HTML5页面中长按保存图片功能的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。