Structuring

This commit is contained in:
2017-02-19 10:56:01 +01:00
parent 8c6799ab8d
commit 8859405eef
12 changed files with 143 additions and 20 deletions
+28
View File
@@ -0,0 +1,28 @@
/* CONSTANTS */
$ZOOM-IN: 0;
$ZOOM-OUT: 1;
$FOCUS-IN: 0;
$FOCUS-OUT: 1;
$LINEAR:0;
$EASE:1;
$EASEINOUT:2;
$BACKWARD:3;
/* MIXINS */
/// Gives the Element a focusing Effect
/// @param {int} $direction
/// @param {int} $direction
/// @param {int} $direction
@mixin camera-focus($direction,$seconds:0.5,$pixels:10,$performance:0) {
/* Camera Focus Effect */
filter: blur($pixels);
}
@mixin camera-shake (){}
@mixin camera-zoom (){}