Skip to content

Instantly share code, notes, and snippets.

@oconn
Forked from dbc-challenges/jquery_example.html
Last active January 2, 2016 14:49
Show Gist options
  • Select an option

  • Save oconn/8319339 to your computer and use it in GitHub Desktop.

Select an option

Save oconn/8319339 to your computer and use it in GitHub Desktop.
Intro to jQuery for Phase 0
<!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> DBC Mascot </h1>
<img id="logo" src="dbc_logo.png">
</div>
<div id="inst">
<h2>Hover over the Fox</h2>
<h3>01 - 27 - 2014<br />Let's get started</h3>
</div>
</body>
</html>
$(document).ready(function(){
//RELEASE 0:
//Link this script and the jQuery library to the jquery_example.html file and analyze what this code does.
//RELEASE 1:
//Add code here to select elements of the DOM
$('body').css({
'background-color': 'white',
'padding': '1em'
});
$('h1').css({
'text-align': 'center',
'font-size': '2.5em'
});
//RELEASE 2:
// Add code here to modify the css and html of DOM elements
$(".mascot h1").css({
"color": "white"
})
$('#logo').css({
'max-width': '10em',
'margin': '1em auto',
'display': 'block'
})
//RELEASE 3: Event Listener
// Add the code for the event listener here
$('#logo')
.mouseenter(function() {
$('.mascot h1')
.css({
"color": 'red'
})
$('#inst h3')
.css({
'color': 'red'
})
$('body')
.css({
'background-color': 'black'
});
})
.mouseleave(function() {
$('.mascot h1')
.css({
'color': 'white'
})
$('body')
.css({
'background-color': 'white'
})
$('#inst h3')
.css({
'color': 'white'
});
});
//RELEASE 4 : Experiment on your own
$('#inst').css({
"width": "100%"
});
$('#inst h2').css({
"text-align": "center"
});
$('#inst h3').css({
"text-align": "center",
"color": "white"
});
}) // 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