Usage
easing($ease, $custom)
Parameters
$ease
(Optional) (String) The name of the easing to use.
Default: linear
$custom
(Optional) (String) Comma separated values
Default: None
Parameter Notes
Predefined easings are located in _variables.scss within a $easings variable.
To use custom values, pass “custom” as the $ease parameter.
Examples
Use a predefined easeOutBack easing.
.example {@include prefix((transition: right 0.5s easing(easeOutBack)));}
Use a custom values.
.example {@include prefix((transition: right 0.5s easing(custom, "0.190, 1.000, 0.220, 1.000")));}
Source File
This function was not found in /assets/scss/partials/_mixins.scss. Please report this error.
Override
To override or disable this, redefine the mixin/function later on, or use different class names to prevent this from targeting your element.
@mixin easing($ease, $custom){ //Write your own code here, leave it blank, or return false. }