-
-
Save jwrobes/9175044 to your computer and use it in GitHub Desktop.
Intro to jQuery for Phase 0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>DOM manipulation with jQuery</title> | |
| <!-- Add a link to jQuery CDN here script here --> | |
| <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> | |
| <script type="text/javascript" src="jquery_example.js"></script> | |
| </head> | |
| <body> | |
| <h1> Hello. Welcome to the jQuery DOM Manipulation Challenge! </h1> | |
| <div class="mascot"> | |
| <h1> My DBC Mascot </h1> | |
| <img src="devbootcamp.png"> | |
| </div> | |
| </body> | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $('body').css({'background-color': 'pink'}); | |
| //RELEASE 1: | |
| //Add code here to select elements of the DOM | |
| var bodyElement = $('body'); | |
| //RELEASE 2: | |
| // Add code here to modify the css and html of DOM elements | |
| var h1Element = $('h1'); | |
| h1Element.css({'color':'green'}); | |
| h1Element.css({'border': '.2em dotted yellow'}) | |
| //h1Element.css({'visibility': 'hidden'}) | |
| $('.mascot h1').html('Fiery Skippers'); | |
| //RELEASE 3: Event Listener | |
| // Add the code for the event listener here | |
| $('img').on('mouseover', function(e) { | |
| //e.preventDefault() | |
| $(this).attr('src', 'http://www.theultimateplaylist.com/wp-content/uploads/2012/03/willy-wonka-wilder.jpg') | |
| $(this).css({'border': '5px red dotted'}).animate({ | |
| borderWidth: 5 }, | |
| 100); | |
| // $(this).animate({'height': '600px'},300) | |
| }) | |
| /*$('img').on('mouseover', function(e){ | |
| $(this).animate | |
| }) | |
| */ | |
| $('img').on('mouseout', function(f) { | |
| $(this).attr('src', 'devbootcamp.png') | |
| $(this).css({'border': 'none'}).animate({ | |
| borderWidth: 0 }, | |
| 100); | |
| // $(this).animate({'height': '300px'},300) | |
| }) | |
| //RELEASE 4 : Experiment on your own | |
| }) // end of the document.ready function: do not remove or write DOM manipulation below this. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment