transition-native.html revision 2e49faa8717cc2acbd7ab2aac237061848568a6c
959c053d56a076109993a2f14094d20b1f8c0c17Matt Sweeney<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
959c053d56a076109993a2f14094d20b1f8c0c17Matt Sweeney background:#ccc;
959c053d56a076109993a2f14094d20b1f8c0c17Matt Sweeney width:200px;
959c053d56a076109993a2f14094d20b1f8c0c17Matt Sweeney height:200px;
959c053d56a076109993a2f14094d20b1f8c0c17Matt Sweeney margin-top:200px;
959c053d56a076109993a2f14094d20b1f8c0c17Matt Sweeney overflow: hidden;
959c053d56a076109993a2f14094d20b1f8c0c17Matt Sweeney position:relative;
959c053d56a076109993a2f14094d20b1f8c0c17Matt Sweeney -webkit-transition-property: width, height, top, left, opacity;
959c053d56a076109993a2f14094d20b1f8c0c17Matt Sweeney -webkit-transition-duration: 1s;
2e49faa8717cc2acbd7ab2aac237061848568a6cMatt Sweeney -moz-transition-property: width, height, top, left, opacity;
2e49faa8717cc2acbd7ab2aac237061848568a6cMatt Sweeney -moz-transition-duration: 1s;
959c053d56a076109993a2f14094d20b1f8c0c17Matt Sweeney var node = document.getElementById('demo'),
959c053d56a076109993a2f14094d20b1f8c0c17Matt Sweeney computed = getComputedStyle(node, '');
2e49faa8717cc2acbd7ab2aac237061848568a6cMatt Sweeney console.log(computed['MozTransitionProperty']);
959c053d56a076109993a2f14094d20b1f8c0c17Matt Sweeney node.addEventListener('webkitTransitionEnd', function(e) {
959c053d56a076109993a2f14094d20b1f8c0c17Matt Sweeney var w = parseFloat(computed.width) + 100;