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

 

posted @ 2018-06-08 13:01  居家懒人  阅读(182)  评论(0编辑  收藏  举报