2
テキストのトランジションアニメーションの一時停止/再開を試みます。私は同じような質問のために多くの解決策を試みましたが、それでも成功しません。Javascriptテキストのトランジションアニメーションの一時停止と再開
[一時停止]ボタンをクリックすると「色効果」を一時停止し、再開ボタンをクリックすると、残りの時間に基づいてテキスト全体を色づけする「色効果」が終了します。
ここに私のコードです。
$(document).ready(function(){
$('#start').on('click', function() {
$(this).text('Resume');
$(this).attr('disabled',true);
$('span').addClass('active');
$('span').dequeue();
});
$("#stop").click(function() {
$('#start').attr('disabled',false);
$('#start').clearQueue();
$("span").stop();
/*
* it similiar like below,
* but still not perfect.
* when the duration of background-position-x has finished,
* the transition start again. and yet still not perfect
*/
/*$('span').animate({
'background-position-x': '10%',
'background-position-y': '20%'
}, 10000, 'linear');*/
});
})
body {
\t \t background: #ccc;
\t }
\t span {
\t height: 25px;
\t background-size: 200% 100%;
\t background-image: linear-gradient(to right, orange 50%, white 50%), linear-gradient(to right, transparent 50%, transparent 50%);
\t text-indent: 28px;
\t font-size: 30px;
\t background-size: 200% 100%;
\t background-repeat: no-repeat;
\t background-position: 100% top, 100% top;
\t -webkit-background-clip: text, border-box;
\t background-clip: text, border-box;
\t color: transparent;
\t }
\t .active {
\t \t background-position: 0% top, 0% top;
\t transition: background-position 10s;
\t }
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<p><span>Lorem ipsum dolor sit amet</span></p>
<button id="start">Start</button>
<button id="stop">Pause</button>
注:私はすでに私の場合で実装しようと、非常に多くのJavaScriptの一時停止/再開「問題がある知っているが、まだ成功していません。あなたは、クロスブラウザの互換性(-moz、-webkitなど)のためにあなたのアニメーションプロパティに接頭辞を追加することを確認したCSS animation-play-state
を切り替えるには、jQueryのを使用し
ワウ優秀です!ありがとうございました...私は他のソリューションでアニメーション再生状態を使用しましたが、動作しませんでした。今私はそれを使用する方法を知っています。どうもありがとうございます。 – fandiahm