0
How to add loading amination inhtml
3 Answers
+ 5
Ujjawal Mishra
You can also use jquery for making pre-loader
$(function(){
setTimeout(function(){
//Loader
//$("").show()
},4000)
$("").hide()
})
+ 3
Ujjawal Mishra Kindly use the SEARCH Bar feature in Sololearn.
https://www.sololearn.com/Discuss/2503658/?ref=app
https://www.sololearn.com/post/825562/?ref=app
+ 1
The method is by using a Javascript setTimeout() function.
See the demo here. https://code.sololearn.com/Wia64KQeQ6p8/?ref=app
You can customize it in your own way by adding custom loader image, or loader div, etc.