diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..e2a3397 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,8 @@ +{ + "spellright.language": [ + "it" + ], + "spellright.documentTypes": [ + "latex" + ] +} \ No newline at end of file diff --git a/readme.md b/readme.md index dd33b99..1ecf799 100644 --- a/readme.md +++ b/readme.md @@ -1,4 +1,4 @@ -

mbSlider 1.0.0

+

mbSlider 1.1.0

A flexibile slider system to create animated presentations.

Based on bxSlider by by: Steven Wanderski diff --git a/src/css/animate_custom.css b/src/css/animate_custom.css index 9e1ef5f..2fd829e 100644 --- a/src/css/animate_custom.css +++ b/src/css/animate_custom.css @@ -22,20 +22,20 @@ 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 { @@ -43,35 +43,35 @@ body { 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 { @@ -79,44 +79,44 @@ body { 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); diff --git a/src/sass/helpers/_base.scss b/src/sass/helpers/_base.scss index a5f6cc2..a7e6b58 100644 --- a/src/sass/helpers/_base.scss +++ b/src/sass/helpers/_base.scss @@ -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 { @@ -84,4 +86,5 @@ body { .flippedX { @include animate-prefixer(transform, scale(-1, 1)); + }