我在加载新页面时使用spin.js来显示微调器。因为IE有动画gif的问题我使用这个库。现在我发现它在iOS上不起作用。微调器根本没有出现。经测试:
它适用于Windows的每个浏览器(甚至适用于Windows的Safari)。
标题
<script type="text/javascript" src="../js/spin.min.js"></script>
关闭正文之前:
<div id ="center" style="position:fixed;top:50%;left:50%"></div>
<script>
var opts = {
lines: 13, // The number of lines to draw
length: 8, // The length of each line
width: 4, // The line thickness
radius: 11, // The radius of the inner circle
corners: 1, // Corner roundness (0..1)
rotate: 0, // The rotation offset
direction: 1, // 1: clockwise, -1: counterclockwise
color: '#000', // #rgb or #rrggbb or array of colors
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('center');
var spinner = new Spinner(opts);
$("#select-place input").click(function(){
spinner.spin(target);
});
$(window).bind("load", function() {
spinner.stop();
});
</script>
我试图使用另一个元素。这有效。问题是position:fixed
。我读到iOS 5支持这一点。即使在iOS上,如何将微调器置于屏幕中间?该页面不是为移动设备明确构建的。它主要是桌面版,但它也适用于iOS。
答案 0 :(得分:1)
因为其他解决方案没有用,我不会使用框架,所以我想出了一个JS解决方案。只需使用JS计算屏幕中间:
jQuery.fn.center = function () {
this.css("position","absolute");
this.css("top", Math.max(0, (($(window).height() - $(this).outerHeight()) / 2) +
$(window).scrollTop()) + "px");
this.css("left", Math.max(0, (($(window).width() - $(this).outerWidth()) / 2) +
$(window).scrollLeft()) + "px");
return this;
}
$('#center').center();
一个缺点:用户可以滚动旋转器。你需要适应滚动的东西,例如:显示在Fixed positioning in Mobile Safari。