"sanjay paranomic slider"
Bootstrap 3.3.0 Snippet by sanjay84

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<!--Submitted March 23, 12:00 noon -->
<!-- Placed outside of .container, will make it screen width, you can place inside .row -->
<div class="cycle">
<h2 class="text-center">Easy panoramic headers: <small>drag mouse around on image</small></h2>
</div> <!-- /.cycle -->
<div class="container">
<div class="row">
<br><br><br><hr>
<p>Cyclotron project:<a href="https://github.com/mahonnaise/cyclotron" target="_blank">https://github.com/mahonnaise/cyclotron</a></p>
<p><small>Image by <a href="http://www.flickr.com/photos/smyph/" target="_blank">smyph.</a></small></p>
<p><small>Cursor by <a href="https://www.iconfinder.com/icons/80532/finger_flick_gestureworks_one_icon" target="_blank">Gestureworks_one.</a></small></p>
<hr>
<p>
<br>
<a href="http://validator.w3.org/check?uri=http%3a%2f%2fbootsnipp.com%2fiframe%2f6pxr;ss=1"><span class="glyphicon glyphicon-check" style="color: #339900;"></span><small> HTML</small><sup>5</sup></a>
</p>
</div><!-- /.row -->
</div><!-- /.container -->
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
.cycle {
background-image: url(http://i.imgur.com/cxAGkCf.jpg);
height: 415px;
cursor: move;
}
.box {
width: 512px;
margin: 0 auto;
font-family: arial, sans-serif;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
Ref:
https://github.com/mahonnaise/cyclotron
*/
$(document).ready(function($) {
$('.cycle').cyclotron();
$(".cycle").css('cursor', 'url(http://i.imgur.com/FrQFOJo.png),auto');
});
// library
(function($) {
$.fn.cyclotron = function(options) {
var settings = $.extend({
dampingFactor: 0.93,
historySize: 5
}, options);
return this.each(function() {
var container, sx, dx = 0,
armed, offset = 0,
tick, prev, h = [];
container = $(this);
container.mousedown(function(e) {
sx = e.pageX - offset;
armed = true;
e.preventDefault();
});
container.mousemove(function(e) {
var px;
if (armed) {
px = e.pageX;
if (prev === undefined) {
prev = px;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: