CODOLEARN
Home
(current)
Courses
Code Playground
Diccussion
Contact Us
References
Typing Speed Test
Quiz
Python
Login
Register
SignUp Here
×
Username
First Name
Last Name
Email address
Choose a password
Confirm Password
Submit
Login Here
×
Username
Enter your password
Submit
CODOLEARN
HTML
CSS
js
Result
<!--predefined html, but editable--> <div class="circle"> click me! </div>
/*predefined CSS, but editable*/ .circle { display: flex; align-items: center; justify-content: center; width: 200px; height: 200px; border-radius: 50%; background: crimson; margin: auto; margin-top: 50px; transition-duration: 300ms; }
//predefined JavaScript, but editable var circle = document.querySelector(".circle"); var bool = false; circle.addEventListener('click', function() { if (!bool) { circle.style.background = "coral"; bool = true; } else { circle.style.background = "crimson"; bool = false; } });
© 2021 Created By "KARTIK A DIGITAL INFLUENCER" || All Rights Reserved