让cocos h5里的文字可以在手机上被长按复制

mac2022-06-30  24

更改CCBoot.js代码:

 

// Adjust mobile css settings if (cc.sys.isMobile) { var fontStyle = document.createElement("style"); fontStyle.type = "text/css"; document.body.appendChild(fontStyle); /* fontStyle.textContent = "body,canvas,div{ -moz-user-select: none;-webkit-user-select: none;-ms-user-select: none;-khtml-user-select: none;" + "-webkit-tap-highlight-color:rgba(0,0,0,0);}"; */ //让网页内的文字可以被长按复制 fontStyle.textContent = "body,canvas,div{-webkit-tap-highlight-color:rgba(0,0,0,0);}"; }

 

转载于:https://www.cnblogs.com/JD85/p/9155088.html

最新回复(0)