Commit d8b10ef3 by o.kimura

MVアニメーション

parent d90f93e0
...@@ -2923,6 +2923,20 @@ $(function () { ...@@ -2923,6 +2923,20 @@ $(function () {
} }
}); });
// MV
$(".mv-circle").css("display", "none");
$(".mv-text01").css("display", "none");
$(".mv-text02").css("display", "none");
setTimeout(function () {
$(".mv-circle").fadeIn(800);
setTimeout(function () {
$(".mv-text01").fadeIn(800);
setTimeout(function () {
$(".mv-text02").fadeIn(1500);
}, 1000);
}, 800);
}, 1500);
}); });
// header固定 // header固定
......
This diff could not be displayed because it is too large.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment