-
Notifications
You must be signed in to change notification settings - Fork 177
/
custom-easing.html
40 lines (28 loc) · 917 Bytes
/
custom-easing.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>jquery.pep base demo - custom easing functions</title>
<!-- Load local jQuery. -->
<script src="../libs/jquery/jquery.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/modernizr/2.6.2/modernizr.min.js"></script>
<!-- Load local lib and tests. -->
<script src="../src/jquery.pep.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('.pep').pep({
cssEaseString: 'cubic-bezier(0.680, -0.550, 0.265, 1.550)',
debug: true
});
});
</script>
<style type="text/css">
.pep{ width: 200px; height: 200px; background: #ccc; border: 5px solid red; padding: 30px; }
</style>
</head>
<body>
<div class="pep">
<a href="http://matthewlein.com/ceaser/">Get more easing functions</a>
</div>
</body>
</html>