Skip to content

Instantly share code, notes, and snippets.

@haruhiko-zht
Created October 11, 2018 04:57
Show Gist options
  • Save haruhiko-zht/fdbca550f7a4097c458ff419a86a8495 to your computer and use it in GitHub Desktop.
Save haruhiko-zht/fdbca550f7a4097c458ff419a86a8495 to your computer and use it in GitHub Desktop.
slide_links()
$(function(){
// クリックされた時に関数を呼び出す
$("#tab a").click(function(){
links_slide();
});
// 関数
function links_slide(){
if($("#links-content").css("left").replace("px","") < 0){
$("#links-content").animate({
"left":"0px"
},500);
} else {
$("#links-content").animate({
"left":"-470px"
},500);
}
}
// 初回のみ3秒後に実行
setTimeout(function(){
links_slide();
},3000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment