Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
news
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Sartika Aritonang
news
Commits
348b88bb
Commit
348b88bb
authored
4 years ago
by
Sartika Aritonang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Upload New File
parent
953117e2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
59 additions
and
0 deletions
+59
-0
jquery.easing.compatibility.js
...esign/vendor/jquery-easing/jquery.easing.compatibility.js
+59
-0
No files found.
project/static/home_design/vendor/jquery-easing/jquery.easing.compatibility.js
0 → 100644
View file @
348b88bb
/*
* Easing Compatibility v1 - http://gsgd.co.uk/sandbox/jquery/easing
*
* Adds compatibility for applications that use the pre 1.2 easing names
*
* Copyright (c) 2007 George Smith
* Licensed under the MIT License:
* http://www.opensource.org/licenses/mit-license.php
*/
(
function
(
$
){
$
.
extend
(
$
.
easing
,
{
easeIn
:
function
(
x
,
t
,
b
,
c
,
d
)
{
return
$
.
easing
.
easeInQuad
(
x
,
t
,
b
,
c
,
d
);
},
easeOut
:
function
(
x
,
t
,
b
,
c
,
d
)
{
return
$
.
easing
.
easeOutQuad
(
x
,
t
,
b
,
c
,
d
);
},
easeInOut
:
function
(
x
,
t
,
b
,
c
,
d
)
{
return
$
.
easing
.
easeInOutQuad
(
x
,
t
,
b
,
c
,
d
);
},
expoin
:
function
(
x
,
t
,
b
,
c
,
d
)
{
return
$
.
easing
.
easeInExpo
(
x
,
t
,
b
,
c
,
d
);
},
expoout
:
function
(
x
,
t
,
b
,
c
,
d
)
{
return
$
.
easing
.
easeOutExpo
(
x
,
t
,
b
,
c
,
d
);
},
expoinout
:
function
(
x
,
t
,
b
,
c
,
d
)
{
return
$
.
easing
.
easeInOutExpo
(
x
,
t
,
b
,
c
,
d
);
},
bouncein
:
function
(
x
,
t
,
b
,
c
,
d
)
{
return
$
.
easing
.
easeInBounce
(
x
,
t
,
b
,
c
,
d
);
},
bounceout
:
function
(
x
,
t
,
b
,
c
,
d
)
{
return
$
.
easing
.
easeOutBounce
(
x
,
t
,
b
,
c
,
d
);
},
bounceinout
:
function
(
x
,
t
,
b
,
c
,
d
)
{
return
$
.
easing
.
easeInOutBounce
(
x
,
t
,
b
,
c
,
d
);
},
elasin
:
function
(
x
,
t
,
b
,
c
,
d
)
{
return
$
.
easing
.
easeInElastic
(
x
,
t
,
b
,
c
,
d
);
},
elasout
:
function
(
x
,
t
,
b
,
c
,
d
)
{
return
$
.
easing
.
easeOutElastic
(
x
,
t
,
b
,
c
,
d
);
},
elasinout
:
function
(
x
,
t
,
b
,
c
,
d
)
{
return
$
.
easing
.
easeInOutElastic
(
x
,
t
,
b
,
c
,
d
);
},
backin
:
function
(
x
,
t
,
b
,
c
,
d
)
{
return
$
.
easing
.
easeInBack
(
x
,
t
,
b
,
c
,
d
);
},
backout
:
function
(
x
,
t
,
b
,
c
,
d
)
{
return
$
.
easing
.
easeOutBack
(
x
,
t
,
b
,
c
,
d
);
},
backinout
:
function
(
x
,
t
,
b
,
c
,
d
)
{
return
$
.
easing
.
easeInOutBack
(
x
,
t
,
b
,
c
,
d
);
}
});})(
jQuery
);
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment