jQueryにてアニメーションのpuffを秒数をしていして実装したいのですがエラーが発生してしまいできません。
<!doctype html> <html lang="jp"> <head> <!-- Required meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <!-- Bootstrap CSS --> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous"> <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous"> <link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP::wght@400;500;700&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700&display=swap" rel="stylesheet"> <link rel="stylesheet" href="common/style.css"> <title>AIRFIT</title> </head> <body> 下記がアニメーションのエフェクトを加えたい画像です↓ <img class="top-censor" src="common/img/top-censor.png"> <script src="https://code.jquery.com/jquery-3.3.1.min.js"></script> <!--↓これがあるとスライドダウンのアニメーションが実装されない--> <!--<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>--> <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script> <script src='http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.5/jquery-ui.min.js'></script> <script src="common/script.js"></script> </div> </body> </html>
script.js部分 $(function(){ $( ".top-censor" ).hide(); $( document ).scroll(function() { $( ".top-censor" ).show( "puff" ,{ }, 2000); }); });
出てしまうエラー
jquery-3.3.1.min.js:2 Uncaught TypeError: w.easing[this.easing] is not a function at init.run (jquery-3.3.1.min.js:2) at u (jquery-3.3.1.min.js:2) at Function.w.fx.tick (jquery-3.3.1.min.js:2) at at (jquery-3.3.1.min.js:2)
調べると
出たエラーが時間指定に関するところでしたので
試したこととして
・$(functionでくくってあげる
・$ではなくjQueryに変えてみる
をしたのですが同じエラーが発生してしまいます
どなたかわかる方おりましたら教えていただけると幸いです。
よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー