-
-
Save metavida/7628910 to your computer and use it in GitHub Desktop.
A WIP, 5 minute intro to programming (via JavaScript)
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
document.getElementById('content-main-heading') | |
document.getElementById('content-main-heading').style.zoom //=> "1" | |
document.getElementById('content-main-heading').style.zoom = 2 | |
document.getElementById('content-main-heading').style.zoom //=> "2" | |
var myZoomyTitle = document.getElementById('content-main-heading') | |
myZoomyTitle.style.zoom //=> "2" | |
myZoomyTitle.style.zoom = 1 | |
jQuery(myZoomyTitle).animate({zoom: 2}) |
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
$('.tweet').on('mouseenter', function() { alert('Welcome, mouse pointer!') }) | |
$('.tweet').off('mouseenter') | |
$('.tweet').on('mouseenter', function() { jQuery(this).animate({zoom: 1.5}) }) | |
$('.tweet').on('mouseleave', function() { jQuery(this).animate({zoom: 1.0}) }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment