28 lines
437 B
SCSS
28 lines
437 B
SCSS
/* 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 (){} |