Skip to content

Instantly share code, notes, and snippets.

@anovsiradj
Last active December 6, 2020 18:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anovsiradj/d773a1ba2d9630dcf32ca62e42a6fbfb to your computer and use it in GitHub Desktop.
Save anovsiradj/d773a1ba2d9630dcf32ca62e42a6fbfb to your computer and use it in GitHub Desktop.
Video Zooming, Rotating, Positioning.

dailymotion

#player-body video 
{
	transform: scale(2);
	top: 100px !important;
	left: 0 !important;
}

youtube

#movie_player video 
{
	transform: scale(2);
	transform: scale(2) rotate(-90deg); // left
	transform: scale(2) rotate(90deg); // right
	top: 100px !important;
	left: 0px !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment