+ 2
Does it possible to animate only using Javascript??
I seen in many tutorial where they use plugins to animate a page while Scrolling.So,does it possible to animate only using Javascript but not Jquery?
3 odpowiedzi
+ 11
Thank you so much Coder bro for sharing my code 😊
+ 3
do you mean the requestAnimationFrame function?:
function loop(){
//... your code which generates a frame
requestAnimationFrame(loop);
}
+ 2
Yes,and thank you! for your help