目前jQuery spin.js微调器有定位它的选项。
我之前使用过以下配置:
// set up spin.js vars
var opts = {
lines: 13, // The number of lines to draw
length: 5, // The length of each line
width: 2, // The line thickness
radius:5, // The radius of the inner circle
corners: 1, // Corner roundness (0..1)
rotate: 58, // The rotation offset
direction: 1, // 1: clockwise, -1: counterclockwise
color: '#fff', // #rgb or #rrggbb or array of colors
speed: 0.9, // Rounds per second
trail: 100, // Afterglow percentage
shadow: false, // Whether to render a shadow
hwaccel: false, // Whether to use hardware acceleration
className: 'mySpinner', // The CSS class to assign to the spinner
zIndex: 2e9, // The z-index (defaults to 2000000000)
top: '50%', // Top position relative to parent
left: '50%' // Left position relative to parent
};
// show a spinner in place of the icon
var target = document.getElementById('testdiv');
var spinner = new Spinner(opts).spin(target);
$(target).data('mySpinner', spinner);
然而,该位置显示其相对于其父级。
目前的结构是:
<div id="container">
<div id="testdiv">
</div>
<div>
微调器将在包含div而不是目标div中居中。有办法解决这个问题吗?
答案 0 :(得分:0)
如果您仍在寻找解决方案,我猜您可以使用position: relative
使其正常工作,如下所示:
.mySpinner {
position: relative !important;
}
这样,微调器将以testdiv
为中心。 Here's a working JsFiddle