Last active
August 29, 2015 14:12
-
-
Save fanningert/5658f7899c9e3051de47 to your computer and use it in GitHub Desktop.
HTML5 video tag for Kirby CMS
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
<?php | |
/** | |
* | |
* Install | |
* ======= | |
* Move this file to /site/snippets/ and rename it video.php | |
* | |
* @author: Thomas Fanninger <[email protected]> | |
* @version: 0.3 | |
*/ | |
?> | |
<video<?php echo (!empty($width))?' width="'.$width.'"':''; ?><?php echo (!empty($height))?' height="'.$height.'"':''; ?><?php echo (!empty($preload))?' preload="'.$preload.'"':''; ?><?php echo ($controls)?' controls="constrols"':''; ?><?php echo ($loop)?' loop="loop"':''; ?><?php echo ($autoplay)?' autoplay="autoplay"':''; ?><?php echo ($muted)?' muted="muted"':''; ?><?php echo (!empty($poster))?' poster="'.$poster.'"':''; ?><?php echo (!empty($class))?' class="'.$class.'"':''; ?>> | |
<?php if(!empty($webm)) { ?> | |
<source src="<?php echo $webm; ?>" type="video/webm"/> | |
<?php } ?> | |
<?php if(!empty($mp4)){ ?> | |
<source src="<?php echo $mp4; ?>" type="video/mp4"/> | |
<?php } ?> | |
<?php if(!empty($ogg)){ ?> | |
<source src="<?php echo $ogg; ?>" type="video/ogg"/> | |
<?php } ?> | |
Your browser does not support the <code>video</code> element. | |
</video> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment