Skip to content

Instantly share code, notes, and snippets.

Created November 24, 2013 16:19
Show Gist options
  • Save anonymous/7628896 to your computer and use it in GitHub Desktop.
Save anonymous/7628896 to your computer and use it in GitHub Desktop.
A WIP intro to JavaScript presentation
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})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment