8

大家好,

我是 JavaScript 新手,在互联网上进行了大量研究并尝试实现微调器失败后,我决定问你。

我正在使用 Spin.js ( http://fgnass.github.com/spin.js/#v1.2.6 )。它似乎是一个很棒的工具,但我根本无法让它发挥作用。我的问题是我做错了什么?我实在想不通。任何帮助都感激不尽。太感谢了。

这是我的一段代码:

   <script src="Scripts/Spin.js" type="text/javascript"></script>

    <script type="text/javascript">
           function spinnerInit() {
               var opts = {
                   lines: 13, // The number of lines to draw
                   length: 7, // The length of each line
                   width: 4, // The line thickness
                   radius: 10, // The radius of the inner circle
                   corners: 1, // Corner roundness (0..1)
                   rotate: 0, // 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
                   visibility: true
               };

               var target = document.getElementById('spinnerContainer');
               //target.style.display = "block";
               var spinner = new Spinner(opts).spin(target);
           }
       </script>

      <script type="text/javascript">
           $(document).ready(function () {
               $('#btnPerformSave').click(function () {
                   spinnerInit();
               });
           });
       </script>

     <div id="spinnerContainer" class="spinner" style="width: 100%; height: 150%;
           position: absolute; z-index: 100; background-color: Gray;
           left: 0; top:  0; bottom: 0;right: 0">
       </div>
4

5 回答 5

16

尝试更换

var target = document.getElementById('spinnerContainer');
var spinner = new Spinner(opts).spin(target);

$('#spinnerContainer').after(new Spinner(opts).spin().el);

您需要将 spin 方法创建的 html 元素附加到 dom

这是一个让您入门的示例http://jsfiddle.net/5CQJP/1/

于 2012-09-03T11:56:19.697 回答
10

我不确定这个问题是否得到了回答,但对于那些仍在寻找答案的人:

我发现我需要将 javascript 移动到 spinnerContainer div 下。我相信如果您将 javascript 放在 onload 事件中,这也会起作用。这是我所做的:

<div id="spinnerContainer" class="spinner" style="width:100px;height:100px;background-color: Gray;">
</div>
<script src="Scripts/Spin.js" type="text/javascript"></script>
<script type="text/javascript">
    var opts = {
      lines: 13, // The number of lines to draw
      length: 7, // The length of each line
      width: 4, // The line thickness
      radius: 10, // The radius of the inner circle
      corners: 1, // Corner roundness (0..1)
      rotate: 0, // 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('spinnerContainer');
    var spinner = new Spinner(opts).spin(target);
</script>
于 2013-01-27T05:58:11.197 回答
1

这是我的答案。效果很好。

//Declare Script
<script src="Scripts/spin.js" type="text/javascript"></script>


 <button  id="btnSearchClick">Search</button>

//Displays Loading Spinner
<div id="loading">
    <div id="loadingcont">
        <p id="loadingspinr">
        </p>
    </div>
</div>



<script type="text/javascript">
     //On button click load spinner and go to another page
     $("#btnSearchClick").click(function () {  
        //Loads Spinner
        $("#loading").fadeIn();
        var opts = {
            lines: 12, // The number of lines to draw
            length: 7, // The length of each line
            width: 4, // The line thickness
            radius: 10, // The radius of the inner circle
            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
        };
        var trget = document.getElementById('loading');
        var spnr = new Spinner(opts).spin(trget);

        //Go another page.
        window.location.href = "http://www.example.com/";
   });
 </script>
于 2016-11-02T19:34:15.133 回答
0

尝试这个:

var target = document.getElementById('spinnerContainer');
           //target.style.display = "block";
           var spinner = new Spinner(opts);

如果你使用 jQuery:

           $(target).html(spinner.el);

如果没有,如文档中所述:

           target.innerHtml = '';
           target.appendChild(spinner.el);

我没有尝试过,但它应该可以工作。如果出现问题,请告诉我。

于 2012-09-03T11:37:51.953 回答
0

我知道这已经很晚了,但我很好奇你是否有这个工作。我会告诉你一件愚蠢的事情,我做了一段时间并没有意识到这一点。我正在使微调器与它所显示的背景颜色相同,这就是我看不到它的原因。 我也使用了JQuery,如此处所示https://gist.github.com/its-florida/1290439

于 2013-03-13T14:09:42.830 回答