2

我正在尝试使用 jquery-mobile 微调器,但它似乎不起作用

从官方文档(http://jquerymobile.com/demos/1.2.0/docs/pages/loader.html)中,我尝试在 chrome 控制台中运行它并且它可以工作

$.mobile.loading( 'show', {
    text: 'foo',
    textVisible: true,
    theme: 'z',
    html:  "<i class='icon-spinner icon-4x'></i>"
});

但如果我尝试从 application.html.haml 或控制台运行它,似乎不起作用

$( document ).bind( 'mobileinit', function(){
  $.mobile.loader.prototype.options.text = "loading";
  $.mobile.loader.prototype.options.textVisible = false;
  $.mobile.loader.prototype.options.theme = "a";
  $.mobile.loader.prototype.options.html = "<i class='icon-spinner icon-4x'></i>";
});

它显示一个阴影而不是我的微调器:-?.

我在这里想念什么?

谢谢 :)

4

1 回答 1

3

解决方案

工作 jsFiddle:http: //jsfiddle.net/Gajotres/vdgB5/

Mobileinit事件必须在 jQuery Mobile 初始化之前和 jQuery 之后初始化。还必须对 css 进行一些额外的更改才能使其正常工作。

首先,我们需要覆盖默认ui-loader-default类,因为它的不透明度很低,而且最终的微调器很难看到。随心所欲地更改不透明度值。

.ui-loader-default {
    opacity: 1 !important;      
}

这是我们的微调器。因为您使用的是我们需要使用的自定义 i 标签display: block,所以没有它,微调器将被隐藏。

.custom-spinner {
    width: 37px !important;
    height: 37px !important;
    background-image:url('http://pictures.reuters.com/ClientFiles/RTR/Images/ajax-loader.gif');
    display: block;
}

这是一个工作示例:

HTML:

<!DOCTYPE html>
<html>
    <head>
        <title>jQM Complex Demo</title>
        <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; minimum-scale=1.0; user-scalable=no; target-densityDpi=device-dpi"/>
        <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
        <style>

            .ui-loader-default {
                opacity: 1 !important;      
            }

            .custom-spinner {
                width: 37px !important;
                height: 37px !important;
                background-image:url('http://pictures.reuters.com/ClientFiles/RTR/Images/ajax-loader.gif');
                opacity: 1 !important;
                display: block;
            }
        </style>
        <script type="text/javascript" src="http://www.dragan-gaic.info/js/jquery-1.8.2.min.js"></script>
        <script>
            $( document ).bind( 'mobileinit', function(){
                $.mobile.loader.prototype.options.text = "loading";
                $.mobile.loader.prototype.options.textVisible = false;
                $.mobile.loader.prototype.options.theme = "a";
                $.mobile.loader.prototype.options.html = "<i class='custom-spinner'></i>";
            }); 
        </script>       
        <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>    
        <script>
            $(document).on('pageshow', '#index', function(){        
                $.mobile.loading( 'show');          
            }); 
        </script>
    </head>
    <body>
        <div data-role="page" id="index">
            <div data-theme="a" data-role="header">
                <h3>
                    First Page
                </h3>
                <a href="#second" class="ui-btn-right">Next</a>
            </div>

            <div data-role="content">

            </div>

            <div data-theme="a" data-role="footer" data-position="fixed">

            </div>
        </div> 
    </body>
</html>   
于 2013-04-06T13:50:22.273 回答