我試圖運行在頁面加載的動畫,但它不工作,我改變在頁面加載與字體大小不透明度和其沒有顯示出效果jQuery的頁面加載動畫不能正常工作
$(".animation").animate({opacity: 0.1, font-size:20px}, 1500);
$(".animation").animate({opacity: 0.5, font-size:30px}, 500);
$(".animation").animate({opacity: 0.9, font-size:40px}, 100);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<h1 class="animation">Checking</h1>
你在哪裏寫上述腳本?在document.ready中? –
工作小提琴https://jsfiddle.net/pajxq8bu/ –