admin管理员组文章数量:1345090
I have a site logo that I want to animate (fade in) when a user first arrives into my domain. But, I do not want to animate this if the user arrives from another page in my domain.
I have the animation routine sorted (jquery) but I don't know how to detect when a user is landing on my site from elsewhere (link, or through typing in the URL).
I guess there might be an elegant javascript solution for this? Could anyone let me know what it might be...
I have a site logo that I want to animate (fade in) when a user first arrives into my domain. But, I do not want to animate this if the user arrives from another page in my domain.
I have the animation routine sorted (jquery) but I don't know how to detect when a user is landing on my site from elsewhere (link, or through typing in the URL).
I guess there might be an elegant javascript solution for this? Could anyone let me know what it might be...
Share asked Aug 5, 2014 at 10:38 ploddingOnploddingOn 1331 gold badge4 silver badges12 bronze badges1 Answer
Reset to default 13Javascript has function document.referrer.split('/');
using this you should be able to find if they came from a page on your domain or not.
Hope this helps.
Example:
if(document.referrer.split('/')[2]!=location.hostname){
//User came from other domain or from direct
}else{
//User came from another page on your site
}
本文标签: htmlJavascript to detect domain of previous pageStack Overflow
版权声明:本文标题:html - Javascript to detect domain of previous page - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743773460a2536543.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论