0
Loading In A site
Guys I am again in a trouble, Actually I am not much faimiler to Web development but if I do like this in css part body{ background-image:url("https://....."); } So like this in display all images take time to be load, is it possible to make a loder that after loding the image will not take time to load
2 Answers
+ 3
Yes but you need to use javascript.
For example, you can make body{display:none}
And in js:
Window.onload = function(){
document.body.style.display = "block";
}
+ 1
đ Alex TuÈinean đ I will try it