-
Notifications
You must be signed in to change notification settings - Fork 0
/
suave.js
81 lines (55 loc) · 2.05 KB
/
suave.js
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/*
* Suave makes it easier to apply smooth vertical scrolling to all of the same-page
* links on your website. Simply pass in all anchor tags and you are set. You can
* also select specific classes or IDs if you don't need it on all links. I'm working
* on adding support for horizontal scrolling and also to make Suave more
* customizable. Stay tuned
*
* Suave requires jQuery to work.
*
*
* by Enrique Gonzalez (Enriikke)
* helloimenrique.com
*
* enjoy!
*
*/
(function ($) {
$.fn.suave = function(options) {
// Customizable settings for Suave
var settings = $.extend({
speed: 400, // How fast should the animation be
displayURL: false, // Display the link hash in the URL bar
horizontalScroll: false // Allow for horizontal scrolling
}, options);
/****************************************************************************************************
NICE UTIL FUNCTIONS FOR VAPE TO WORK
*****************************************************************************************************/
// TODO: Need to filterout the target
var getTarget = function(anchor) {
if( anchor.hash.replace(/#/, '') &&
anchor.hostname == location.hostname &&
anchor.pathname == location.pathname ) return anchor.hash;
return false;
};
// TODO: test the location
var setHash = function(target) {
location.hash = target;
};
/****************************************************************************************************
THE MAGIC HAPPENS HERE
*****************************************************************************************************/
return this.each(function() {
var target = getTarget(this);
if(!target) return true;
$(this).click(function (event) {
event.preventDefault();
var offset = $(target).offset().top;
$('html, body').animate({scrollTop: offset}, settings.speed, function() {
if(settings.displayURL) setHash(target);
});
});
});
};
})(jQuery);