//sample solution to script.js $(function () { $('#button').click( function () { // Add a call to animate to change the background to // the color #d4ecf8. $('#writing').animate({ backgroundColor: "#d4ecf8" },1000); }); });
Quotes help make search much faster. Example: "Practice Makes Perfect"
Monday, November 12, 2012
Codecademy: "Animate our transitions"
//sample solution to script.js $(function () { $('#button').click( function () { // Add a call to animate to change the background to // the color #d4ecf8. $('#writing').animate({ backgroundColor: "#d4ecf8" },1000); }); });
Labels:
Codecademy,
jQuery
Subscribe to:
Post Comments (Atom)
This is an example of scrolling text using Javascript.
Popular Posts
-
Answer: Alt - p p stands for previous. If you keep pressing Alt - p, you will continue cycling back through commands you typed before. I...
-
//sample solution def isEven(x): if(x % 2 == 0): return "yep" else: return "nope"
-
favorite_animal ||= "dog" favorite_animal ||= "cat"
-
<!--sample solution--> <html> <head> <title>Week 13 Project</title> </head> ...
-
<!-- Sample solution to index.html --> <!DOCTYPE html> <html> <body> <div class="nav"> ...
-
//sample solution var yourName = "Pam"; var gender = "female"; var result; //Line 10 starts an if statement //Ne...
-
$("#tours > li")
-
#sample solution hungry = false unless hungry puts "I'm writing Ruby programs!" else puts "Time to eat!...
-
<html> <head> <!-- Add the Parse SDK here! --> <script src="http://www.parsecdn.com/js/par...
-
# Codecademy Sample Solution import requests import pprint query_params = { 'apikey': '24115b5bd3d34ed28fc03a8c53eed18c...
No comments:
Post a Comment