首页 > Web开发 > 详细

【jquery】基于 jquery 的翻拍效果 flip

时间:2014-07-23 20:30:55      阅读:366      评论:0      收藏:0      [点我收藏+]

最近做了个类似于塔罗牌翻牌的效果,分享给大家。

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8"/>
    <title>flip</title>
    <style>
    *{margin:0;padding:0;}
    .content{background:orange;height:300px;margin:100px auto;width:200px;}
    </style>
</head>
<body>
    <div class="content"></div>
</body>
</html>
<script src="jquery.min.js"></script>
<script src="jquery-ui.min.js"></script>
<script src="jquery.flip.min.js"></script>
<script>
$(function(){
    $(.content).click(function(){
        var _this = $(this);
        _this.flip({
            direction: lr,
            content: 反转后显示的内容,反转后显示的内容,反转后显示的内容,反转后显示的内容,
            onEnd: function(){
                _this.css({
                    background: orange,
                    color: white
                }).unbind(click);
            }
        });
    });
});
</script>

参数说明:

direction:翻转方向,总共有 4 个值(tb、bt、lr、rl),默认 tb

content:设置翻转后容器内显示的内容,可以是文本,可以是 html,甚至可以是 jquery 对象

color:设置翻转后容器的背景色

speed:设置翻转速度,值越小速度就越快

onBefore:设置翻转前需要执行的内容

onAnimation:设置翻转到一半的时候需要执行的内容

onEnd:设置翻转完成后需要执行的内容

PS:

jqueryui 的 js 只需要 core 和 effects core

官网地址:Flip! A jQuery plugin v0.9.9

点击下载 demo

【jquery】基于 jquery 的翻拍效果 flip,布布扣,bubuko.com

【jquery】基于 jquery 的翻拍效果 flip

原文:http://www.cnblogs.com/yjzhu/p/3863670.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!