Created
May 2, 2011 08:30
-
-
Save rymai/951305 to your computer and use it in GitHub Desktop.
SublimeVideo: Lightbox from a text link
This file contains hidden or 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
<!-- Inside the <head> tag --> | |
<script type="text/javascript" src="http://cdn.sublimevideo.net/js/YOUR_TOKEN.js"></script> | |
<!-- Inside the <body> tag --> | |
<a class="sublime" href="video.mp4"> | |
Click here to view the video | |
</a> | |
<video class="sublime zoom" poster="posterframe.jpg" width="800" height="336" preload="none" style="display:none"> | |
<source src="video.mp4" /> | |
<source src="video.ogv" /> | |
</video> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment