animate
import $ from 'jquery';
export function init(){
console.log("pcIntroduction");
$('.js-spLang').hide();
$('.js-pcIntroduction').show();
$('.js-pcIntroduction')
.animate({
left: '-100%'
}, 4000, 'swing', function () {
// アニメーション完了後に実行される
$('.js-pcIntroduction').fadeOut();
$('.js-spLang').slideDown('slow');
$('.background-wihte')
.animate({
top: '100%'
},1200,'swing');
});
$('.js-pcIntroduction-bottom')
.delay(1000)
.animate({
width: '100%',
}, 3000, 'swing', function () {
// アニメーション完了後に実行される
$('.js-pcIntroduction-bottom').fadeOut();
});
}