Skip to content

Instantly share code, notes, and snippets.

@eklimcz-zz
Created July 25, 2011 18:48
Show Gist options
  • Save eklimcz-zz/1104856 to your computer and use it in GitHub Desktop.
Save eklimcz-zz/1104856 to your computer and use it in GitHub Desktop.
css3d transition
//---------------------HTML
<footer id="footer">
<button id="btnExpand" class="expander" type="button"></button>
...
</footer>
//---------------------CSS
footer.expander{
-webkit-transition-property: -webkit-transform;
-webkit-transition-duration: 350ms;
}
//--------------------JS
var footer = document.getElementById('footer');
footer.style.webkitTransform = 'translate3d(0,' + -150 + 'px,0)';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment