-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathscrollStyler.js
183 lines (141 loc) · 5.89 KB
/
scrollStyler.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
/*
* @author Mestafor
* @name Scroll styler
*
*/
'use strict';
// ******************* SCROLL-STYLER **************************
/**
* Стилізує скролл
* @param options []
* @param options.element - передаємо елемент, якому потрібно стилізувати скролл
* @constructor
*/
function RunScrollStyler( options ) {
"use strict";
var element = document.querySelector( options.element );
if( ! element )
return;
// конструктор стилізатора
function ScrollStyler () {
this.element = element; // елемент, який має скрол
this.scrollHeight = this.element.scrollHeight; // висота скрола
this.scrollWidth = this.element.offsetWidth - this.element.clientWidth; // ширина скрола
}
// методи стилізатора
ScrollStyler.prototype = {
constructor : ScrollStyler,
/**
* ховає скрол
*/
hideScroll : function () {
// якщо скрол не потрібний
if ( this.scrollWidth <= 0 ) {
this.scrollWidth = 0;
this.removeScroll();
}
else {
// в іншому випадку додаємо скролл
this.addScroll();
}
// визначає ширину блока зі скролом
this.element.style.marginRight = - this.scrollWidth + 'px';
},
/**
* створює скрол і додає його
*/
addScroll : function () {
// видаляє скрол
this.removeScroll();
var self = this;
var scroll = this.element.querySelector( '.myScroll' ); // вибирає створений скрол
var scrolling;
// якщо немає скрола, створює його
if ( ! scroll ) {
scroll = document.createElement( 'DIV' );
scrolling = document.createElement( 'SPAN' );
scroll.appendChild( scrolling );
scroll.className = 'myScroll';
//this.scroll.sass.right = this.scrollWidth + 'px';
this.element.parentNode.appendChild( scroll );
}
// задається висота скрола
var precentHeight = this.element.offsetHeight / this.scrollHeight;
var spanHeight = this.element.offsetHeight * precentHeight;
scrolling.style.height = spanHeight + "px";
var scrollTop = this.element.scrollTop / self.scrollHeight;
scrollTop = scrollTop * self.element.offsetHeight;
scrolling.style.top = scrollTop + 'px';
// при скролі зміщувати стилізований блок так само, як скролл
addEvent(this.element,'scroll', function () {
scrollTop = this.scrollTop / self.scrollHeight;
scrollTop = scrollTop * self.element.offsetHeight;
scrolling.style.top = scrollTop + 'px';
});
var startY;
var lastY;
var isScroll = false;
function scrollMouseDown( ev ) {
ev = ev || window.event;
ev.preventDefault();
startY = ev.clientY;
isScroll = true;
addEvent(self.element, 'mousemove', scrollMouseMove);
}
function scrollMouseMove ( e ){
if (!isScroll)
return;
e = e || window.event;
e.preventDefault();
if (e.which == 1) {
lastY = e.clientY;
var top = self.element.scrollTop;
var precentTop = self.element.scrollTop / self.element.scrollHeight;
var scrollTop = precentTop * self.element.offsetHeight;
scrollTop += lastY - startY;
scrolling.style.top = scrollTop + 'px';
self.element.scrollTop = scrollTop / self.element.offsetHeight * self.element.scrollHeight;
startY = lastY;
}
}
function scrollMouseUp ( e ) {
isScroll = false;
}
addEvent(scrolling, 'mousedown', scrollMouseDown);
addEvent(scrolling, 'mousemove', scrollMouseMove);
addEvent(self.element, 'mouseup', scrollMouseUp);
addEvent(scrolling, 'mouseup', scrollMouseUp);
},
/**
* видаляє скрол
*/
removeScroll: function () {
var scroll = this.element.parentNode.querySelector( '.myScroll' );
if ( scroll )
this.element.parentNode.removeChild( scroll );
}
};
// якщо підтримується тач, скролл не стилізується
if ( window.ontouchstart !== undefined )
return;
try {
// створюється обєкт
var scroller = new ScrollStyler();
// стилізує скролл
scroller.hideScroll();
var timer;
// стилізує скролл при ресайзі
removeEvent(window, 'resize', resize);
addEvent( window, 'resize', resize );
//var timer;
} catch (e) {
console.log('Problem with scroll styler ' + e);
} finally {
return;
}
function resize () {
scroller.hideScroll();
scroller = new ScrollStyler();
scroller.hideScroll();
}
}