JSFiddle - React, Tailwind, and code Playground
by John Grivas
HTML
<script src="http://fchdata.com/beta/_api/PikaChoose/4.5.0/lib/jquery.jcarousel.min.js"></script>
<script src="http://fchdata.com/beta/_api/PikaChoose/4.5.0/lib/jquery.pikachoose.full.js"></script>
<div class="pikachoose">
Styled without images. Pure CSS.
<ul id="pikame" >
<li><a href="http://www.pikachoose.com"><img src="http://www.pikachoose.com/wp-content/uploads/main-demo/1.jpg"/></a><span>This is an example of the basic theme.</span></li>
<li><a href="http://www.pikachoose.com"><img src="http://www.pikachoose.com/wp-content/uploads/main-demo/2.jpg"/></a><span>jCarousel is supported and can be integrated with PikaChoose!</span></li>
<li><a href="http://www.pikachoose.com"><img src="http://www.pikachoose.com/wp-content/uploads/main-demo/3.jpg"/></a><span>Be sure to check out <a href="http://www.pikachoose.com">PikaChoose.com</a> for updates.</span></li>
</ul>
</div>
CSS
/*if you just want to adjust the size of the stage and the thumbnails, you can do so by editing the following lines: */
.pika-thumbs li{width: 144px; height:74px;}
.pika-stage {height: 250px;}
body{font-family: sans-serif;background:#FCFCFC;}
a{color:white;}
.pikachoose {width: 645px; margin: 0 auto;}
.pika-stage {position: relative;border: 3px solid #010101;
-moz-box-shadow: 5px 5px 2px #888;-webkit-box-shadow: 5px 5px 2px #888;box-shadow: 5px 5px 2px #888;}
/*if you change the padding on pika-stage you must adjust the top left of this to match! */
.pika-stage .main-image {position: absolute; top: 0px; left: 0px;}
.pika-stage .pika-aniwrap{position: absolute; top: 0px; left: 0px;}
.pika-stage .pika-ani {position:relative;display: none;z-index:2;margin:0 auto;}
.pika-stage img {border:0;height:100%;}
.pika-stage .caption {position: absolute; background: url(75-black.png); border: 1px solid #141414; font-size: 11px;
color: #fafafa; padding: 10px; text-align: right; bottom: 10px; right: 10px;}
.pika-stage .caption p {padding: 0; margin: 0; line-height: 14px;}
.pika-imgnav a {position: absolute; text-indent: -5000px; display: block;z-index:3;cursor:pointer;}
.pika-imgnav a.previous {width:20px;height:20px;border-left: 5px solid #FFF;border-top: 5px solid #FFF;opacity:0;-webkit-transition: opacity 300ms linear;
-webkit-transform: rotate(-45deg);-moz-transform: rotate(-45deg);transform: rotate(-45deg);top:45%;left:10px;}
.pika-imgnav a.next {width:20px;height:20px;border-right: 5px solid #FFF;border-top: 5px solid #FFF;opacity:0;-webkit-transition: opacity 300ms linear;
-webkit-transform: rotate(45deg);-moz-transform: rotate(45deg);transform: rotate(45deg);top:45%;right:10px;}
.pika-imgnav a:hover{opacity:.6;-webkit-transition: opacity 300ms linear;}
.pika-imgnav a.play {border-color: transparent transparent rgba(255,255,255,.7);border-style: solid;border-width: 0 0 25px 25px;height: 0;width: 0;position:absolute;
-webkit-transform:...
JavaScript
$(document).ready(
function (){
$("#pikame").PikaChoose();
});