Skip to content

tappily/easeless

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

easeless

Easing function for LESS

The function accepts 3 or 4 arguments. The follow examples produce equivalent ease values.

.ease(ease-in, 1.5, .5);
.ease(ease-in, 1.5, 50% 100%);

After calling the function, an ease variable is placed in scope.

.width-mix-in(@width) {
  .ease(ease-in-out, 2, 25% 100%, {
    width: @width * @ease;
  });
}