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

更改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);}";
    }

猜你喜欢

转载自www.cnblogs.com/JD85/p/9155088.html