我正在尝试找到一种方法,无论屏幕大小如何,都可以将我的 Flipclock.js 动态居中在页面上。到目前为止,我发现的每个解决方案似乎都不起作用(在我看来,由于 Flipclock.js 代码中的一些内部规范)。我在这里使用 github 页面来托管这个时钟:http: //spriggs857.github.io/misc/这是我的代码:
<style type="text/css">
#counter {
position:fixed;
top: 50%;
left: 30%;
width:70em;
height:50em;
}
</style>
<body>
<div id="counter" class="clock" style="margin:-4em;"></div>
<script type="text/javascript">
var clock;
$(document).ready(function() {
// Grab the current date
var currentDate = new Date();
var pastDate = new Date('April 19, 2015 23:17:00');
// Calculate the difference in seconds between the future and current date
var diff = currentDate.getTime() / 1000 - pastDate.getTime() / 1000;
// Instantiate a countdown FlipClock
clock = $('.clock').FlipClock(diff, {
clockFace: 'DailyCounter'
});
});
</script>
</body>
任何和所有的帮助将不胜感激。我还想在此计时器上方和下方居中放置大文本,因此如果有人可以提供帮助,我将永远感激不尽!