私はページをリロードすると新たに起動するカウントダウンスクリプトを持っています。私はいくつかの日付まで働くように設定する必要があります。ここでページをリロードするとカウントダウンがリセットされます - 日付まで設定する必要があります
は、カウントダウンタイマービューのリンクであり、また、あなたがダウンロードして使用してか、コードを見ることができます:
$(document).ready(function() {
$('#countdown2').ClassyCountdown({
end: '1388468325',
now: '1378441323',
labels: true,
style: {
element: "",
textResponsive: .5,
days: {
gauge: {
thickness: .01,
bgColor: "rgba(0,0,0,0.05)",
fgColor: "#1abc9c"
},
textCSS: 'font-family:\'Open Sans\'; font-size:25px; font-weight:300; color:#34495e;'
},
hours: {
gauge: {
thickness: .01,
bgColor: "rgba(0,0,0,0.05)",
fgColor: "#2980b9"
},
textCSS: 'font-family:\'Open Sans\'; font-size:25px; font-weight:300; color:#34495e;'
},
minutes: {
gauge: {
thickness: .01,
bgColor: "rgba(0,0,0,0.05)",
fgColor: "#8e44ad"
},
textCSS: 'font-family:\'Open Sans\'; font-size:25px; font-weight:300; color:#34495e;'
},
seconds: {
gauge: {
thickness: .01,
bgColor: "rgba(0,0,0,0.05)",
fgColor: "#f39c12"
},
textCSS: 'font-family:\'Open Sans\'; font-size:25px; font-weight:300; color:#34495e;'
}
},
onEndCallback: function() {
console.log("Time out!");
}
});
});
<link href="http://timer.craftovdvlp.club/css/jquery.classycountdown.css" rel="stylesheet" />
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css" rel="stylesheet" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="http://timer.craftovdvlp.club/js/jquery.classycountdown.js"></script>
<script src="http://timer.craftovdvlp.club/js/jquery.knob.js"></script>
<script src="http://timer.craftovdvlp.club/js/jquery.throttle.js"></script>
<div class="container">
<div id="countdown2" class="ClassyCountdownDemo"></div>
</div>
P.S.:https://timer.craftovdvlp.club/
そして、ここではスクリプトですもし誰かが美しい線円形のカウントダウンタイマーのリンクを持っているか知っていれば、私は助けに非常に感謝します)
あなたは "新たに開始" とはどういう意味ですか? 'now'の値をハードコーディングしたようです。カウントダウンをエンドポイントに対して相対的に残しておきたい場合、' now'を 'well ... * now * 'に設定してはいけませんか?さらに、このプラグインの '.js'ファイルをホストして、スニペットに「Add External Library」ツールを使用して問題を再現できるようにする必要があります。 – Santi
すべてのインクルードを追加しました。はい、私は今ファイル**のhttp://timer.craftovdvlp.club/js/jquery.classycountdown.js**に、私は日付を追加し、フォーマットを書く場合でも、それはまだ日付を表示しないと同じまたはクラッシュを動作します – Orik3ll0