Software Animation

Rajeev Ranjan Tiwari दोस्तो आज हम जानेंगे कि इंटरनेट के दुनियां में आप कैसे कीसी भी वेब पेज पर page color Animation बना सकते है लेकिन इसे बनाने के लिए आपको css , HTML , javascript , jQuery आना चाहिए इसके अन्दर हम tag के मदद से ओर function के अन्दर काम करना सीखेंगे तो दिखते हैं कि यह कैसे काम करता है और इस code को केसे लीख सकते है (1) <html> <head> <title>bgcolor</title> <script> function changeBodyBg(color){ document.body.style.background = color; } </script> </head> <body> <hr> <div> <button type="button" onclick="changeBodyBg('yellow');">Yellow</button> <button type="button" onclick="changeBodyBg('lime');">Lime</button> <button type="button" onclick="changeBodyB...