roulette is roulette-like image carousel with links. It is meant to be some kind of effect to make your web site more visually attractive.
The live demo of this directive can be found on my personal website. The source code is available on github.
You can install roulette into your web application via bower:
bower install roulette
Include the bower components and roulette application components into your page:
<link rel="stylesheet" href="css/roulette.min.css" type="text/css">
<script src="../jquery/dist/jquery.min.js" type="text/javascript"></script>
<script src="../angular/angular.min.js" type="text/javascript"></script>
<script src="script/roulette.min.js" type="text/javascript"></script>
If you, for some reason, want to install manually, you can do so by downloading angular
and jquery
files and including them to your HTML page along with the roulette.min.js
and roulette.min.css
.
If everything is in place, and you have roulette added as your dependency, then just make a div
element with a
elements inside like this:
<div ph-roulette="{delay:55, angleStep: 0.3, rotation:'cw', radius: 150, thumb: {width: 100, height: 100}, bgImage: {src:'images/wheel.png', width: 451, height: 451}}">
<a href="html/page1.html"><img src="images/c2.png" alt="c2" title="JAWA-ÈZ 125 ccm, 1954"/></a>
<a href="html/page1.html"><img src="images/c3.png" alt="c3" title="ES-KA Mofa, 1938"/></a>
<a href="html/page1.html"><img src="images/c4.png" alt="c3" title="Phänomen Bob, 1939"/></a>
<a href="html/page1.html"><img src="images/c6.png" alt="c3" title="Stadion S-22, 1962"/></a>
<a href="html/page1.html"><img src="images/c7.png" alt="c3" title="JAWA 90 Roadster, 1971"/></a>
</div>
Notice the directive configuration object located in ph-roulette
attribute:
{
delay:55,
angleStep: 0.3,
rotation:'cw',
radius: 150,
thumb: {
width: 100,
height: 100
},
bgImage: {
src:'images/wheel.png',
width: 451,
height: 451
}
}
delay
integer, has an influence on how fast the carousel is turning
angleStep
float, an angle of rotation in each time step, has an influence on rotation "granularity / smoothness"
rotation
string, can be either 'cw' or 'ccw'
radius
integer, the radius in pixels, of the image orbit
thumb
object, defines a thumbnail basic properties, common for all images
width
integer, the width of the thumbnail in pixels
height
integer, the height of the thumbnail in pixels
bgImage
object, OPTIONAL, defines the properties of the background image
src
string, the source of the background image
width
integer, the width of the background image
height
integer, the height of the background image
The background image rotates with opposite orientation. If you want it to be different, just fork and work:-)