Video with CSS transitions on :hover and :focus


video {
	width: 75px;
	-o-transition: all 0.5s ease-in-out;
	...
}

video:hover,video:focus { width:600px; }

This demonstration supplements the Introduction to HTML5 video article on Dev.Opera.