Template:Team:HokkaidoU Japan/About Us/JS
From 2014.igem.org
(Difference between revisions)
Line 10: | Line 10: | ||
//オーバーレイを表示 | //オーバーレイを表示 | ||
- | $(" | + | $(".show").click(function(){ |
- | $(" | + | $(".overlay").show(500); |
}); | }); | ||
//オーバーレイを隠す | //オーバーレイを隠す | ||
- | $(" | + | $(".overlay").click(function(){ |
$(this).hide(500); | $(this).hide(500); | ||
}); | }); | ||
//イベントのバブリングを中止 | //イベントのバブリングを中止 | ||
- | $(" | + | $(".overlay-content").click(function(e){ |
e.stopPropagation(); | e.stopPropagation(); | ||
}); | }); |
Revision as of 08:05, 29 September 2014