1

すべてのコードを投稿することはできませんが、大部分を示します。

これらは、スピナー機能を処理するコードのスニペットです。スピナーを見ることができますが、回転しません。スピナーも停止するコードがいくつかありますが、それを取り出してもまだスピンしません。スピナーがフリーズしていることを示しているだけです。何か案は?私はこれを見てきましたが、私の問題がどこにあるのかを判断できません。おそらく、asp.netで使用することに関係があります。私のファイルには spinmin.js のスクリプトもありますが、ここには表示されていません。

//aspx
<div id="waitDiv" class="divWait" ></div>

//css
.divWait { text-align: center; width: 950px; height: 190px; }

//javascript
var spinner;

function doSpinner() {
            var opts = createSpinnerOpts();
            var target = document.getElementById('waitDiv');
            if (typeof(spinner) == 'undefined') {
                spinner = new Spinner(opts).spin(target);
            }

}

function createSpinnerOpts() {
            var opts = {
                lines: 13, // The number of lines to draw
                length: 7, // The length of each line
                width: 8, // The line thickness
                radius: 40, // The radius of the inner circle
                corners: 1, // Corner roundness (0..1)
                rotate: 89, // The rotation offset
                color: '#000', // #rgb or #rrggbb
                speed: 0.5, // Rounds per second
                trail: 100, // Afterglow percentage
                shadow: true, // Whether to render a shadow
                hwaccel: true, // Whether to use hardware acceleration
                className: 'spinner', // The CSS class to assign to the spinner
                zIndex: 2e9, // The z-index (defaults to 2000000000)
                top: 'auto', // Top position relative to parent in px
                left: 'auto' // Left position relative to parent in px
            };
            return opts;
        }
4

1 に答える 1

1

わかりました、私は今日のばかです。スピナーをクラスとして追加すると、スピンします....

<div id="waitDiv" class="spinner" ></div>
于 2012-10-26T22:23:48.790 に答える