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
// jQuery version - we use the .on() function to make sure we can also run the function on dynamically inserted elements. | |
$(document).on("click", "a.playbtn", function (e) { | |
var video = $(document).find('#intro-video')[0]; // Find the video element to play | |
video.play(); // play the video, simple innit? | |
}); |
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
AddType video/mp4 f4v f4p m4v mp4 | |
AddType video/ogg ogv | |
AddType video/webm webm |
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
<video width="1920" height="1080" src="http://www.domain.com/assets/video/video.mp4" poster="http://www.domain.com/assets/img/poster.jpg" autoplay loop preload muted></video> | |
<!-- | |
The above element behaves like this: | |
- Sets the width and height of the video element to 1920x1080 (can be overridden by CSS or even JS). | |
- Sets the source of the video to the URL of the video file. | |
- Sets a poster image to show before the video plays. | |
- Makes the video play automatically as soon as possible. |
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
<video width="1920" height="1080" poster="http://www.domain.com/assets/img/poster.jpg" autoplay loop preload muted> | |
<source src="http://www.domain.com/assets/video/video.mp4" type="video/mp4" /> | |
<source src="http://www.domain.com/assets/video/video.webm" type="video/webm" /> | |
<source src="http://www.domain.com/assets/video/video.ogv" type="video/ogg" /> | |
</video> | |
<!-- |
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
<source src="http://www.domain.com/assets/video/video.webm#t=10,20" type="video/webm" /> | |
<!-- Set's the media fragment to play the video from 10 to 20 seconds. --> |
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
<track kind="subtitles" label="English subtitles" src="subtitles_en.vtt" srclang="en" default></track> | |
<track kind="subtitles" label="Nederlandse ondertitels" src="subtitles_nl.vtt" srclang="nl"></track> |
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
// Function to convert to human readable time | |
function millisecondsToStr(milliseconds) { | |
function numberEnding (number) { | |
return (number > 1) ? 's left' : ' left'; | |
} | |
var temp = Math.floor(milliseconds / 1000); |
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
safari = ($.browser.webkit && !(/chrome/.test(navigator.userAgent.toLowerCase()))); | |
windows = (navigator.userAgent.indexOf("Win")!=-1); | |
if (safari && windows) { | |
alert('this is safari on windows'); | |
} |
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
<?php | |
// Function that returns random video ID from a users videofeed | |
function RandomYoutube($youtubefeed){ | |
$feedresult = simplexml_load_file($youtubefeed); | |
$videoids = array(); | |
foreach ($feedresult->entry as $video) { |
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
<?php | |
function ShowTweets(){ | |
// Setting the name of our transient | |
$transName = 'twitter'; | |
// Time that the transient expires (in minutes) | |
$cacheTime = 10; | |
OlderNewer