在进度加载运行时禁用页面的其余部分....!

时间:2013-01-21 11:12:33

标签: javascript jsp spinner

我是Javascript的新手

我编写了简单的javascript来使用GIF动画显示进度。

问题是它工作正常,我可以点击gif图像下面的表格。

任何人都可以指导我吗?? ??

我的js功能是

function search()
{
    /* doOverlayOpen('dvLoading', 470); */
    var opts = {
          lines: 17, // The number of lines to draw
          length: 10, // The length of each line
          width: 4, // The line thickness
          radius: 21, // The radius of the inner circle
          corners: 1, // Corner roundness (0..1)
          rotate: 13, // The rotation offset
          color: '#000', // #rgb or #rrggbb
          speed: 1, // Rounds per second
          trail: 60, // Afterglow percentage
          shadow: false, // Whether to render a shadow
          hwaccel: false, // 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
        };
    var target = document.getElementById('myDiv');
    var spinner = new Spinner(opts).spin(target);
    ...Some code.....!!!!!
}

0 个答案:

没有答案