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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset='utf-8' /> | |
<meta name="viewport" content="width=device-width"> | |
<meta name='description' content='' /> | |
<title></title> | |
<style> | |
.cycle-slideshow { |
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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset='utf-8' /> | |
<meta name="viewport" content="width=device-width"> | |
<meta name='description' content='' /> | |
<title></title> | |
<style> | |
.cycle-slideshow { |
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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset='utf-8' /> | |
<meta name="viewport" content="width=device-width"> | |
<meta name='description' content='' /> | |
<title></title> | |
<style> | |
.cycle-slideshow { |
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
<div id="myshow" class="cycle-slideshow" data-cycle-pager="#pager-container"> | |
<img src="img1.jpg"/> | |
<img src="img2.jpg"/> | |
<img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==" data-img="img3.jpg"/> | |
<img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==" data-img="img4.jpg"/> | |
<img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==" data-img="img5.jpg"/> | |
<img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==" data-img="img6.jpg"/> | |
</div> | |
<div id="pager-container"></div> |
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
<div id="myshow" class="cycle-slideshow" data-cycle-pager="#pager-container"> | |
<img src="img1.jpg"/> | |
<img src="img2.jpg"/> | |
<img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==" data-img="img3.jpg"/> | |
<img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==" data-img="img4.jpg"/> | |
<img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==" data-img="img5.jpg"/> | |
<img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==" data-img="img6.jpg"/> | |
</div> | |
<div id="pager-container"></div> |
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
<div class="cycle-slideshow" | |
data-slides=">div" | |
data-cycle-auto-height="calc" | |
> | |
<div> | |
<img src="img1.jpg" width="###" height="###"> | |
<p>caption 1</p> | |
</div> | |
<div> | |
<img src="img2.jpg" width="###" height="###"> |
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
1) No Dims. | |
<video data-setup=“{}” preload=“none”> | |
check: | |
player is visible | |
player has class “vjs-default-dimensions” | |
player width is 300. | |
player height is 150. | |
// I would like to handle this as a special case. Introducing 300 and 150 as | |
// independent default values, as is currently done, creates serious complexities. |
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
button, .button { | |
border-style: solid; | |
border-width: 0; | |
cursor: pointer; | |
font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; | |
font-weight: normal; | |
line-height: normal; | |
margin: 0 0 1.25rem; | |
position: relative; | |
text-decoration: none; |
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
/* eslint no-param-reassign: ["off"] */ | |
/* eslint import/no-extraneous-dependencies: ["error", {"devDependencies": true, | |
"optionalDependencies": false, "peerDependencies": false}] */ | |
/** | |
* Assemble has first-class support for vinyl-fs, so any gulp plugin can be used | |
* directly in the assemble pipeline. | |
*/ |