Skip to content

Instantly share code, notes, and snippets.

@Yelakelly
Created November 23, 2016 10:14
Show Gist options
  • Save Yelakelly/3a239a2ba810681ad6e76620a4f169f0 to your computer and use it in GitHub Desktop.
Save Yelakelly/3a239a2ba810681ad6e76620a4f169f0 to your computer and use it in GitHub Desktop.
Placeholder animate - Sass mixin
<input type="text" placeholder="It's here" />
body{
padding:15px;
}
@mixin placeholder-animate($property, $interval, $time: 0.3s, $time-function: ease-out){
&::placeholder{
#{$property}: nth($interval, 1);
transition: #{$property} $time linear;
}
&:focus{
&::placeholder{
#{$property}: nth($interval, 2);
}
}
}
input{
display: inline-block;
padding:15px 10px;
$interval: #333 #eee;
@include placeholder-animate(color, $interval);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment