admin管理员组文章数量:1435534
My website's favicon that is seen in tabs of chrome disappears when i use the following jQuery. Removing this script from head makes the icon visible. But why a seemingly simple and unrelated code causes it.
My code given below to add a fading preload till the content of page load work perfectly. But the Favicon doesn't load. And checking through inspect element shows that the icon is very loaded also but doesn't show up.
Site url: My Javascript has been inserted directly into HTML in the head of the page the code is given, and i can assure that it doesn't have any error logs in console
<script src=".5.2/jquery.min.js"></script>
<script type="text/javascript">
$(window).load(function() {
$(".milyin-load").fadeOut("slow");;
});
</script>
<div class="milyin-load" >
<img class="milyin-load-image" align="center" src=".png" > </img>
<span class="milyin-load-text" align="center">Milyin </span>
</div>
CSS for same follows:
.milyin-load {
height:100vh;
width:100vw;
background:#fff !Important;
}
.milyin-load-image {
max-width:400px;
position:absolute;
top:0;
left:0;
right:0;
bottom:0;
margin:auto;
max-height:40vh;
}
.milyin-load-text{
position:fixed;
top:80vh;
left:40vw;
right:40vw;
font-size:24px;
margin:auto;
}
My website's favicon that is seen in tabs of chrome disappears when i use the following jQuery. Removing this script from head makes the icon visible. But why a seemingly simple and unrelated code causes it.
My code given below to add a fading preload till the content of page load work perfectly. But the Favicon doesn't load. And checking through inspect element shows that the icon is very loaded also but doesn't show up.
Site url: https://milyin My Javascript has been inserted directly into HTML in the head of the page the code is given, and i can assure that it doesn't have any error logs in console
<script src="http://ajax.googleapis/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
<script type="text/javascript">
$(window).load(function() {
$(".milyin-load").fadeOut("slow");;
});
</script>
<div class="milyin-load" >
<img class="milyin-load-image" align="center" src="https://milyin/wp-content/uploads/2019/03/Milyin-5-e1552211907974.png" > </img>
<span class="milyin-load-text" align="center">Milyin </span>
</div>
CSS for same follows:
.milyin-load {
height:100vh;
width:100vw;
background:#fff !Important;
}
.milyin-load-image {
max-width:400px;
position:absolute;
top:0;
left:0;
right:0;
bottom:0;
margin:auto;
max-height:40vh;
}
.milyin-load-text{
position:fixed;
top:80vh;
left:40vw;
right:40vw;
font-size:24px;
margin:auto;
}
Share
Improve this question
asked Mar 26, 2019 at 9:45
user160406user160406
1
- No repro. Favicon loads for me. Win 10x64 Chrome 73. Probably just a local cache issue on your end. – Samuel Liew Commented Apr 1, 2019 at 0:20
1 Answer
Reset to default 0The problem was the positioning of code, the javascript should be placed inside the DIV tag rather than above it. This makes the thing work.
本文标签: cssjQuery for Fade Preload Causes My Site Favicon to Disappear from Tab of Browser
版权声明:本文标题:css - jQuery for Fade Preload Causes My Site Favicon to Disappear from Tab of Browser 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745637375a2667641.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论