Structuring

This commit is contained in:
2017-02-17 12:37:33 +01:00
parent 2be8d05722
commit 8c6799ab8d
13 changed files with 150 additions and 52 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,$performance:0) {
/* Camera Focus Effect */
filter: blur($pixels);
}
@mixin camera-shake (){}
@mixin camera-zoom (){}