Skip to content

Commit

Permalink
Versione 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
magicbruno committed Sep 28, 2018
1 parent 87294d1 commit 30afe45
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 16 deletions.
8 changes: 8 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"spellright.language": [
"it"
],
"spellright.documentTypes": [
"latex"
]
}
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<h1>mbSlider 1.0.0</h1>
<h1>mbSlider 1.1.0</h1>
<h3>A flexibile slider system to create animated presentations.</h3>
Based on bxSlider by by: Steven Wanderski

Expand Down
30 changes: 15 additions & 15 deletions src/css/animate_custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,101 +22,101 @@ body {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
/* line 21, ../sass/helpers/_base.scss */
/* line 22, ../sass/helpers/_base.scss */
.animated.hinge,
.not-mobile-browser .animated-not-mobile.hinge {
-webkit-animation-duration: 2s;
animation-duration: 2s;
}
/* line 24, ../sass/helpers/_base.scss */
/* line 26, ../sass/helpers/_base.scss */
.animated.bounceIn, .animated.bounceOut,
.not-mobile-browser .animated-not-mobile.bounceIn,
.not-mobile-browser .animated-not-mobile.bounceOut {
-webkit-animation-duration: 0.75s;
animation-duration: 0.75s;
}
/* line 28, ../sass/helpers/_base.scss */
/* line 30, ../sass/helpers/_base.scss */
.animated.flipOutX, .animated.flipOutY,
.not-mobile-browser .animated-not-mobile.flipOutX,
.not-mobile-browser .animated-not-mobile.flipOutY {
-webkit-animation-duration: 0.75s;
animation-duration: 0.75s;
}

/* line 36, ../sass/helpers/_base.scss */
/* line 38, ../sass/helpers/_base.scss */
.in .animated.fast, .in .animated.fastIn,
.not-mobile-browser .in .animated-not-mobile.fast,
.not-mobile-browser .in .animated-not-mobile.fastIn {
-webkit-animation-duration: 0.5s;
animation-duration: 0.5s;
}
/* line 40, ../sass/helpers/_base.scss */
/* line 42, ../sass/helpers/_base.scss */
.in .animated.slow, .in .animated.slowIn,
.not-mobile-browser .in .animated-not-mobile.slow,
.not-mobile-browser .in .animated-not-mobile.slowIn {
-webkit-animation-duration: 1.5s;
animation-duration: 1.5s;
}
/* line 44, ../sass/helpers/_base.scss */
/* line 46, ../sass/helpers/_base.scss */
.in .animated.xslow, .in .animated.xslowIn,
.not-mobile-browser .in .animated-not-mobile.xslow,
.not-mobile-browser .in .animated-not-mobile.xslowIn {
-webkit-animation-duration: 2.5s;
animation-duration: 2.5s;
}
/* line 49, ../sass/helpers/_base.scss */
/* line 51, ../sass/helpers/_base.scss */
.in .animated.hinge.fast, .in .animated.hinge.fastIn,
.not-mobile-browser .in .animated-not-mobile.hinge.fast,
.not-mobile-browser .in .animated-not-mobile.hinge.fastIn {
-webkit-animation-duration: 1s;
animation-duration: 1s;
}
/* line 53, ../sass/helpers/_base.scss */
/* line 55, ../sass/helpers/_base.scss */
.in .animated.hinge.slow, .in .animated.hinge.slowIn,
.not-mobile-browser .in .animated-not-mobile.hinge.slow,
.not-mobile-browser .in .animated-not-mobile.hinge.slowIn {
-webkit-animation-duration: 3s;
animation-duration: 3s;
}

/* line 62, ../sass/helpers/_base.scss */
/* line 64, ../sass/helpers/_base.scss */
.in .animated.fastOut,
.not-mobile-browser .in .animated-not-mobile.fastOut {
-webkit-animation-duration: 0.5s;
animation-duration: 0.5s;
}
/* line 65, ../sass/helpers/_base.scss */
/* line 67, ../sass/helpers/_base.scss */
.in .animated.slowOut,
.not-mobile-browser .in .animated-not-mobile.slowOut {
-webkit-animation-duration: 1.5s;
animation-duration: 1.5s;
}
/* line 68, ../sass/helpers/_base.scss */
/* line 70, ../sass/helpers/_base.scss */
.in .animated.xslowOut,
.not-mobile-browser .in .animated-not-mobile.xslowOut {
-webkit-animation-duration: 2.5s;
animation-duration: 2.5s;
}
/* line 72, ../sass/helpers/_base.scss */
/* line 74, ../sass/helpers/_base.scss */
.in .animated.hinge.fastOut,
.not-mobile-browser .in .animated-not-mobile.hinge.fastOut {
-webkit-animation-duration: 1s;
animation-duration: 1s;
}
/* line 75, ../sass/helpers/_base.scss */
/* line 77, ../sass/helpers/_base.scss */
.in .animated.hinge.slowOut,
.not-mobile-browser .in .animated-not-mobile.hinge.slowOut {
-webkit-animation-duration: 3s;
animation-duration: 3s;
}

/* line 81, ../sass/helpers/_base.scss */
/* line 83, ../sass/helpers/_base.scss */
.flippedY {
-webkit-transform: scale(1, -1);
transform: scale(1, -1);
}

/* line 85, ../sass/helpers/_base.scss */
/* line 87, ../sass/helpers/_base.scss */
.flippedX {
-webkit-transform: scale(-1, 1);
transform: scale(-1, 1);
Expand Down
3 changes: 3 additions & 0 deletions src/sass/helpers/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@ body {
-webkit-animation-iteration-count: $base-iteration-count;
animation-iteration-count: $base-iteration-count;
}

&.hinge {
@include animate-prefixer(animation-duration, $base-duration * 2);

}
&.bounceIn,
&.bounceOut {
Expand Down Expand Up @@ -84,4 +86,5 @@ body {

.flippedX {
@include animate-prefixer(transform, scale(-1, 1));

}

0 comments on commit 30afe45

Please sign in to comment.