Skip to content

Commit f1606e5

Browse files
committed
- Added gulp and dist files
- Updated package.json - Improved credits comments
1 parent 710b3aa commit f1606e5

11 files changed

+1026
-34
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
*.DS_Store
2+
bower_components/
23
/node_modules/

dist/jquery.multiscroll.css

Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
/*!
2+
* multiscroll.js 0.1.7 Beta
3+
* https://github.com/alvarotrigo/multiscroll.js
4+
* @license MIT licensed
5+
*
6+
* Copyright (C) 2016 alvarotrigo.com - A project by Alvaro Trigo
7+
*/
8+
html, body {
9+
margin: 0;
10+
padding: 0;
11+
overflow:hidden;
12+
-webkit-tap-highlight-color: rgba(0,0,0,0);
13+
}
14+
.ms-section {
15+
position: relative;
16+
-webkit-box-sizing: border-box;
17+
-moz-box-sizing: border-box;
18+
box-sizing: border-box;
19+
}
20+
.ms-section.ms-table{
21+
display: table;
22+
width: 100%;
23+
}
24+
.ms-tableCell {
25+
display: table-cell;
26+
vertical-align: middle;
27+
width: 100%;
28+
height: 100%;
29+
}
30+
.ms-easing {
31+
-webkit-transition: all 0.7s ease-out;
32+
-moz-transition: all 0.7s ease-out;
33+
-o-transition: all 0.7s ease-out;
34+
transition: all 0.7s ease-out;
35+
}
36+
#multiscroll-nav {
37+
position: fixed;
38+
z-index: 100;
39+
margin-top: -32px;
40+
top: 50%;
41+
opacity: 1;
42+
}
43+
#multiscroll-nav.right {
44+
right: 17px;
45+
}
46+
#multiscroll-nav.left {
47+
left: 17px;
48+
}
49+
#multiscroll-nav ul{
50+
margin: 0;
51+
padding: 0;
52+
}
53+
#multiscroll-nav li{
54+
display: block;
55+
width: 14px;
56+
height: 13px;
57+
margin: 7px;
58+
position:relative;
59+
}
60+
#multiscroll-nav li a{
61+
display: block;
62+
position: relative;
63+
z-index: 1;
64+
width: 100%;
65+
height: 100%;
66+
cursor: pointer;
67+
text-decoration: none;
68+
}
69+
#multiscroll-nav li .active span{
70+
background: #333;
71+
}
72+
#multiscroll-nav span{
73+
top: 2px;
74+
left: 2px;
75+
width: 8px;
76+
height: 8px;
77+
border: 1px solid #000;
78+
background: rgba(0, 0, 0, 0);
79+
-webkit-border-radius: 50%;
80+
-moz-border-radius: 50%;
81+
border-radius: 50%;
82+
position: absolute;
83+
z-index: 1;
84+
}
85+
.multiscroll-tooltip {
86+
position: absolute;
87+
color: #fff;
88+
font-size: 14px;
89+
font-family: arial, helvetica, sans-serif;
90+
top: -2px;
91+
white-space: nowrap;
92+
max-width: 220px;
93+
}
94+
.multiscroll-tooltip.right {
95+
right: 20px;
96+
}
97+
.multiscroll-tooltip.left {
98+
left: 20px;
99+
}

0 commit comments

Comments
 (0)