HEX
Server: Apache
System: Linux scp1.abinfocom.com 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
User: confeduphaar (1010)
PHP: 8.1.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/confeduphaar/backip-old-files/media/jdbuilder/scss/hover/effects/2d-transitions/_hang.scss
/* Hang */
@include keyframes(#{$nameSpace}-hang) {
	0% {
		@include prefixed(transform, translateY(8px));
	}
	50% {
		@include prefixed(transform, translateY(4px));
	}
	100% {
		@include prefixed(transform, translateY(8px));
	}
}

@include keyframes(#{$nameSpace}-hang-sink) {
	100% {
		@include prefixed(transform, translateY(8px));
	}
}

@mixin hang {
	@include hacks();

	&:hover,
	&:focus,
	&:active {
		@include prefixed(animation-name, "#{$nameSpace}-hang-sink, #{$nameSpace}-hang");
		@include prefixed(animation-duration, ".3s, 1.5s");
		@include prefixed(animation-delay, "0s, .3s");
		@include prefixed(animation-timing-function, "ease-out, ease-in-out");
		@include prefixed(animation-iteration-count, "1, infinite");
		@include prefixed(animation-fill-mode, "forwards");
		@include prefixed(animation-direction, "normal, alternate");
	}
}