__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
// Shorthand mixin. Supports multiple parentheses-deliminated values for each variable.
// Example: @include transition (all 2s ease-in-out);
// @include transition (opacity 1s ease-in 2s, width 2s ease-out);
// @include transition-property (transform, opacity);
@mixin transition($properties...) {
@include _bourbon-deprecate-for-prefixing("transition");
// Fix for vendor-prefix transform property
$needs-prefixes: false;
$webkit: ();
$moz: ();
$spec: ();
// Create lists for vendor-prefixed transform
@each $list in $properties {
@if nth($list, 1) == "transform" {
$needs-prefixes: true;
$list1: -webkit-transform;
$list2: -moz-transform;
$list3: ();
@each $var in $list {
$list3: join($list3, $var);
@if $var != "transform" {
$list1: join($list1, $var);
$list2: join($list2, $var);
}
}
$webkit: append($webkit, $list1);
$moz: append($moz, $list2);
$spec: append($spec, $list3);
} @else {
$webkit: append($webkit, $list, comma);
$moz: append($moz, $list, comma);
$spec: append($spec, $list, comma);
}
}
@if $needs-prefixes {
-webkit-transition: $webkit;
-moz-transition: $moz;
transition: $spec;
} @else {
@if length($properties) >= 1 {
@include prefixer(transition, $properties, webkit moz spec);
} @else {
$properties: all 0.15s ease-out 0s;
@include prefixer(transition, $properties, webkit moz spec);
}
}
}
@mixin transition-property($properties...) {
@include _bourbon-deprecate-for-prefixing("transition-property");
-webkit-transition-property: transition-property-names($properties, "webkit");
-moz-transition-property: transition-property-names($properties, "moz");
transition-property: transition-property-names($properties, false);
}
@mixin transition-duration($times...) {
@include _bourbon-deprecate-for-prefixing("transition-duration");
@include prefixer(transition-duration, $times, webkit moz spec);
}
@mixin transition-timing-function($motions...) {
@include _bourbon-deprecate-for-prefixing("transition-timing-function");
// ease | linear | ease-in | ease-out | ease-in-out | cubic-bezier()
@include prefixer(transition-timing-function, $motions, webkit moz spec);
}
@mixin transition-delay($times...) {
@include _bourbon-deprecate-for-prefixing("transition-delay");
@include prefixer(transition-delay, $times, webkit moz spec);
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| _animation.scss | File | 2.06 KB | 0664 |
|
| _appearance.scss | File | 153 B | 0664 |
|
| _backface-visibility.scss | File | 181 B | 0664 |
|
| _background-image.scss | File | 1.37 KB | 0664 |
|
| _background.scss | File | 1.79 KB | 0664 |
|
| _border-image.scss | File | 1.79 KB | 0664 |
|
| _calc.scss | File | 163 B | 0664 |
|
| _columns.scss | File | 1.84 KB | 0664 |
|
| _filter.scss | File | 194 B | 0664 |
|
| _flex-box.scss | File | 8.71 KB | 0664 |
|
| _font-face.scss | File | 688 B | 0664 |
|
| _font-feature-settings.scss | File | 243 B | 0664 |
|
| _hidpi-media-query.scss | File | 518 B | 0664 |
|
| _hyphens.scss | File | 186 B | 0664 |
|
| _image-rendering.scss | File | 395 B | 0664 |
|
| _keyframes.scss | File | 1.19 KB | 0664 |
|
| _linear-gradient.scss | File | 1.34 KB | 0664 |
|
| _perspective.scss | File | 360 B | 0664 |
|
| _placeholder.scss | File | 248 B | 0664 |
|
| _radial-gradient.scss | File | 1.42 KB | 0664 |
|
| _selection.scss | File | 837 B | 0664 |
|
| _text-decoration.scss | File | 893 B | 0664 |
|
| _transform.scss | File | 691 B | 0664 |
|
| _transition.scss | File | 2.48 KB | 0664 |
|
| _user-select.scss | File | 160 B | 0664 |
|