我正在尝试使用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>";
});
它显示阴影而不是我的微调器: - ? 。
我在这里缺少什么?
谢谢:)
答案 0 :(得分:3)
<强>解决方案强>:
工作jsFiddle:http://jsfiddle.net/Gajotres/vdgB5/
必须在jQuery Mobile初始化之前和jQuery之后初始化 Mobileinit
事件。此外,还必须对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>