cocos h 5の文字を携帯電話で長押ししてコピーできるようにする

1221 ワード

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