Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
リクエストされた Web サイトの URL に基づいてアニメーションをトリガーできるようにしたいと考えています。たとえば、www.site.com/index.php#houses
それは<div id="houses">フェードインになりますか?
<div id="houses">
これを行う簡単な方法はありますか?
You could try this:
$(function(){ $(window.location.hash).fadeIn(); });
try this:
function(){ var uri = window.location.pathname; if(uri.indexOf("#houses") > 0){ $("#houses").fadeIn(); } }