Last active
December 26, 2015 02:19
-
-
Save scottgarner/7077398 to your computer and use it in GitHub Desktop.
#processinghourofcode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
div#container { | |
position:relative; | |
top:0; | |
left:0; | |
width:900px; | |
height:450px; | |
background:#369; | |
margin: 4em auto; | |
} | |
div#videoOne, div#videoTwo { | |
position:absolute; | |
width:450px; | |
height:450px; | |
top:0; | |
overflow:hidden; | |
} | |
div#videoOne{ | |
left:0; | |
} | |
div#videoTwo{ | |
left:450px; | |
} | |
div#videoOne iframe, div#videoTwo iframe { | |
position: relative; | |
margin-left: -175px; | |
} | |
</style> | |
<div id="container"> | |
<div id="videoOne"> | |
<iframe src="http://player.vimeo.com/video/58388167?title=0&byline=0&portrait=0&color=ffffff" width="800" height="450" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe> | |
</div> | |
<div id="videoTwo"> | |
<iframe src="http://player.vimeo.com/video/58388167?title=0&byline=0&portrait=0&color=ffffff" width="800" height="450" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment