forked from woocommerce/FlexSlider
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added "video API" example
- Loading branch information
Showing
9 changed files
with
234 additions
and
8 deletions.
There are no files selected for viewing
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
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,205 @@ | ||
<!DOCTYPE html> | ||
<html class="no-js" lang="en"> | ||
<head> | ||
<meta content="charset=utf-8"> | ||
<title>FlexSlider 2</title> | ||
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"> | ||
|
||
<!-- Syntax Highlighter --> | ||
<link href="css/shCore.css" rel="stylesheet" type="text/css" /> | ||
<link href="css/shThemeDefault.css" rel="stylesheet" type="text/css" /> | ||
<!-- Demo CSS --> | ||
<link rel="stylesheet" href="css/demo.css" type="text/css" media="screen" /> | ||
<link rel="stylesheet" href="../flexslider.css" type="text/css" media="screen" /> | ||
|
||
<!-- Modernizr --> | ||
<script src="js/modernizr.js"></script> | ||
|
||
</head> | ||
<body class="loading"> | ||
|
||
<div id="top"> | ||
|
||
<a href="http://www.woothemes.com" title="WooThemes"> | ||
<img src="images/logo.png" alt="WooThemes" /> | ||
</a> | ||
|
||
</div> | ||
|
||
<div id="container" class="cf"> | ||
<header role="navigation"> | ||
<h1>FlexSlider 2</h1> | ||
<h2>The best responsive slider. Period.</h2> | ||
<a class="button green" href="https://github.com/woothemes/FlexSlider/zipball/master">Download Flexslider</a> | ||
<nav> | ||
<h3>Other Examples</h3> | ||
<ul> | ||
<li><a href="index.html">Basic Slider</a></li> | ||
<li><a href="thumbnail-controlnav.html">Slider w/thumbnail controlNav pattern</a></li> | ||
<li><a href="thumbnail-slider.html">Slider w/thumbnail slider</a></li> | ||
<li><a href="basic-carousel.html">Basic Carousel</a></li> | ||
<li><a href="carousel-min-max.html">Carousel with min and max ranges</a></li> | ||
<li><a class="active" href="video.html">Video & the api (vimeo)</a></li> | ||
</ul> | ||
</nav> | ||
</header> | ||
<div id="main" role="main"> | ||
<section class="slider"> | ||
<div class="flexslider"> | ||
<ul class="slides"> | ||
<li> | ||
<iframe id="player_1" src="http://player.vimeo.com/video/39683393?api=1&player_id=player_1" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe> | ||
</li> | ||
<li> | ||
<img src="images/kitchen_adventurer_lemon.jpg" /> | ||
</li> | ||
<li> | ||
<img src="images/kitchen_adventurer_donut.jpg" /> | ||
</li> | ||
<li> | ||
<img src="images/kitchen_adventurer_caramel.jpg" /> | ||
</li> | ||
</ul> | ||
</div> | ||
</section> | ||
<aside> | ||
<div class="cf"> | ||
<h3>Video</h3> | ||
<ul class="toggle cf"> | ||
<li class="js"><a href="#view-js">JS</a></li> | ||
<li class="html"><a href="#view-html">HTML</a></li> | ||
</ul> | ||
</div> | ||
<div id="view-js" class="code"> | ||
<pre class="brush: js; toolbar: false; gutter: false;"> | ||
// Can also be used with $(document).ready() | ||
$(window).load(function() { | ||
|
||
// Vimeo API nonsense | ||
var player = document.getElementById('player_1'); | ||
$f(player).addEvent('ready', ready); | ||
|
||
function addEvent(element, eventName, callback) { | ||
if (element.addEventListener) { | ||
element.addEventListener(eventName, callback, false) | ||
} else { | ||
element.attachEvent(eventName, callback, false); | ||
} | ||
} | ||
|
||
function ready(player_id) { | ||
var froogaloop = $f(player_id); | ||
froogaloop.addEvent('play', function(data) { | ||
$('.flexslider').flexslider("pause"); | ||
}); | ||
froogaloop.addEvent('pause', function(data) { | ||
$('.flexslider').flexslider("play"); | ||
}); | ||
} | ||
|
||
|
||
// Call fitVid before FlexSlider initializes, so the proper initial height can be retrieved. | ||
$(".flexslider") | ||
.fitVids() | ||
.flexslider({ | ||
animation: "slide", | ||
useCSS: false, | ||
animationLoop: false, | ||
smoothHeight: true, | ||
before: function(slider){ | ||
$f(player).api('pause'); | ||
} | ||
}); | ||
}); | ||
</pre> | ||
</div> | ||
<div id="view-html" class="code"> | ||
<pre class="brush: xml; toolbar: false; gutter: false;"> | ||
<!-- Place somewhere in the <body> of your page --> | ||
<div class="flexslider"> | ||
<ul class="slides"> | ||
<li> | ||
<iframe id="player_1" src="http://player.vimeo.com/video/39683393?api=1&player_id=player_1" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe> | ||
</li> | ||
<li> | ||
<img src="slide2.jpg" /> | ||
</li> | ||
<li> | ||
<img src="slide3.jpg" /> | ||
</li> | ||
<li> | ||
<img src="slide4.jpg" /> | ||
</li> | ||
</ul> | ||
</div> | ||
</pre> | ||
</div> | ||
</aside> | ||
</div> | ||
|
||
</div> | ||
|
||
<!-- jQuery --> | ||
<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script> | ||
<script>window.jQuery || document.write('<script src="js/libs/jquery-1.7.min.js">\x3C/script>')</script> | ||
|
||
<!-- FlexSlider --> | ||
<script defer src="../jquery.flexslider.js"></script> | ||
|
||
<script type="text/javascript"> | ||
$(function(){ | ||
SyntaxHighlighter.all(); | ||
}); | ||
$(window).load(function(){ | ||
|
||
// Vimeo API nonsense | ||
var player = document.getElementById('player_1'); | ||
$f(player).addEvent('ready', ready); | ||
|
||
function addEvent(element, eventName, callback) { | ||
(element.addEventListener) ? element.addEventListener(eventName, callback, false) : element.attachEvent(eventName, callback, false); | ||
} | ||
|
||
function ready(player_id) { | ||
var froogaloop = $f(player_id); | ||
|
||
froogaloop.addEvent('play', function(data) { | ||
$('.flexslider').flexslider("pause"); | ||
}); | ||
|
||
froogaloop.addEvent('pause', function(data) { | ||
$('.flexslider').flexslider("play"); | ||
}); | ||
} | ||
|
||
|
||
// Call fitVid before FlexSlider initializes, so the proper initial height can be retrieved. | ||
$(".flexslider") | ||
.fitVids() | ||
.flexslider({ | ||
animation: "slide", | ||
useCSS: false, | ||
animationLoop: false, | ||
smoothHeight: true, | ||
start: function(slider){ | ||
$('body').removeClass('loading'); | ||
}, | ||
before: function(slider){ | ||
$f(player).api('pause'); | ||
} | ||
}); | ||
}); | ||
</script> | ||
|
||
<!-- Syntax Highlighter --> | ||
<script type="text/javascript" src="js/shCore.js"></script> | ||
<script type="text/javascript" src="js/shBrushXml.js"></script> | ||
<script type="text/javascript" src="js/shBrushJScript.js"></script> | ||
|
||
<!-- Optional FlexSlider Additions --> | ||
<script src="js/froogaloop.js"></script> | ||
<script src="js/jquery.fitvid.js"></script> | ||
<script src="js/demo.js"></script> | ||
|
||
</body> | ||
</html> |
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