エラー メッセージが表示されましたが、セミコロンをどこに置くべきかわかりません。これがコードです。
$('.animation1').delay(350).queue(function(){
$(this).addClass("animate-from-top")
});
エラー メッセージが表示されましたが、セミコロンをどこに置くべきかわかりません。これがコードです。
$('.animation1').delay(350).queue(function(){
$(this).addClass("animate-from-top")
});
In the callback, after the function addClass()
the semicolon is missing:
$('.animation1').delay(350)
.queue(function(){
$(this).addClass("animate-from-top");
// semicolon missing here -----------------------------^
});
like this
$('.animation1').delay(350).queue(function(){$(this).addClass("animate-from-top");});