0

私は jquery で js 電卓を作成しました。IE を除く主要なブラウザーで動作します。主な問題は、入力要素がまったく表示されず、入力が表示されないことです。不正な入力を防ぐために入力が無効になっているので、それが理由かもしれないと思ったのですが、有効にしても解決しません。コードはhttps://github.com/ZackYovel/jQCalc/tree/master/pathToにあり、デモはhttp://jqcalc.co.nf/ にあります。入力の CSS もここにあります。このdiv:

#jQCalc-input-container:focus {
    border: thin solid #fff;
    background: rgb(237,247,253); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(237,247,253,1) 0%, rgba(255,255,255,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(237,247,253,1)), color-stop(100%,rgba(255,255,255,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(237,247,253,1) 0%,rgba(255,255,255,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(237,247,253,1) 0%,rgba(255,255,255,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(237,247,253,1) 0%,rgba(255,255,255,1) 100%); /* IE10+ */
    background: linear-gradient(to bottom, rgba(237,247,253,1) 0%,rgba(255,255,255,1) 100%); /* W3C */
    -ms-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#edf7fd', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}

これらは入力です:

#jQCalc-expression-line, #jQCalc-result-line {
    display: table-row;
    background: none;
    width: 95%;
    margin: 0 auto;
    border: none;
    outline: none;
    font-weight: bold;
}

#jQCalc-result-line {
    letter-spacing: 1px;
    font-size: 14pt;
}

#jQCalc-expression-line {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    letter-spacing: 2px;
}
4

1 に答える 1