JS技术

缓动库_Javascript教程(3)

字号+ 作者:H5之家 来源:H5之家 2015-09-27 08:10 我要评论( )

例: 放大一个div html head title改变大小/title style #test{width:50px; height:20px; background:#f00} /style script type=text/javascript src=/script script type=text/javascript Readkid.onload = functi


例:
放大一个div
<html>
<head>
<title>改变大小</title>
<style>
#test{width:50px; height:20px; background:#f00}
</style>
<script type="text/javascript" src=""></script>
<script type="text/javascript">
Readkid.onload = function() {
 Readkid.motion.tween(document.getElementById('test'), 1, {width:300, height:150});
}
</script>
</head>
<body>
看不到效果请刷新一下
<div id="test"></div>
</body>
</html>

通过更改ease参数可以更改缓动的方式
<html>
<head>
<title>改变大小</title>
<style>
#test{width:50px; height:20px; background:#f00}
</style>
<script type="text/javascript" src=""></script>
<script type="text/javascript">
Readkid.onload = function() {
 Readkid.motion.tween(document.getElementById('test'), 1, {width:300, height:150, ease:Readkid.motion.ease.Bounce.easeOut});
}
</script>
</head>
<body>
看不到效果请刷新一下
<div id="test"></div>
</body>
</html>

让一个div淡入淡出
<html>
<head>
<title>淡入淡出</title>
<style>
#test{width:300px; height:200px; background:#f00;filter:alpha(opacity=0); opacity:0}
</style>
<script type="text/javascript" src=""></script>
<script type="text/javascript">
Readkid.onload = function() {
 Readkid.motion.tween(document.getElementById('test'), 1, {alpha:1, onComplete: function() {
 Readkid.motion.tween(document.getElementById('test'), 1, {alpha:0});
}});
}
</script>
</head>
<body>
看不到效果请刷新一下
<div id="test"></div>
</body>
</html>

颜色滤镜可以更改容器的前景色与背景色

把body背景颜色变成红色
<html>
<head>
<title>改变背景色</title>
<script type="text/javascript" src=""></script>
<script type="text/javascript">
Readkid.onload = function() {
 Readkid.motion.tween(document.body, 1, {bgColor:0xFF0000});
}
</script>
</head>
<body>
看不到效果请刷新一下
</body>
</html>

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
网友点评