Skip to content

Instantly share code, notes, and snippets.

@jwrobes
Forked from dbc-challenges/jquery_example.html
Last active August 29, 2015 13:56
Show Gist options
  • Select an option

  • Save jwrobes/9175044 to your computer and use it in GitHub Desktop.

Select an option

Save jwrobes/9175044 to your computer and use it in GitHub Desktop.

Revisions

  1. jwrobes revised this gist Feb 23, 2014. 2 changed files with 47 additions and 15 deletions.
    8 changes: 5 additions & 3 deletions jquery_example.html
    Original file line number Diff line number Diff line change
    @@ -2,17 +2,19 @@
    <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="dbc_logo.jpg">
    <img src="devbootcamp.png">
    </div>

    </body>
    </html>
    54 changes: 42 additions & 12 deletions jquery_example.js
    Original file line number Diff line number Diff line change
    @@ -1,27 +1,57 @@
    $(document).ready(function(){

    //RELEASE 0:
    //Link this script and the jQuery library to the jquery_example.html file and analyze what this code does.

    $('body').css({'background-color': 'pink'})

    $('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.
  2. @dbc-challenges dbc-challenges created this gist Dec 14, 2013.
    18 changes: 18 additions & 0 deletions jquery_example.html
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,18 @@
    <!DOCTYPE html>
    <html>
    <head>
    <title>DOM manipulation with jQuery</title>

    <!-- Add a link to jQuery CDN here script here -->

    <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="dbc_logo.jpg">
    </div>

    </body>
    </html>
    27 changes: 27 additions & 0 deletions jquery_example.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,27 @@
    $(document).ready(function(){

    //RELEASE 0:
    //Link this script and the jQuery library to the jquery_example.html file and analyze what this code does.

    $('body').css({'background-color': 'pink'})

    //RELEASE 1:
    //Add code here to select elements of the DOM


    //RELEASE 2:
    // Add code here to modify the css and html of DOM elements


    //RELEASE 3: Event Listener
    // Add the code for the event listener here


    //RELEASE 4 : Experiment on your own






    }) // end of the document.ready function: do not remove or write DOM manipulation below this.