web做一个翻卡片组件

开局吐槽

想做一个像王权里的翻卡组件,要能支持手机,翻了翻网上好像只有安卓做的比较多,找了两个web实现的,
一个用不了,另一个代码太长了怕有坑,就自己做了一个
话不多说,上代码和效果

效果

在这里插入图片描述

代码

<head>
    <link rel="stylesheet" href="css/animate.css(百度搜这个css库)" />
    <link rel="stylesheet" href="http://apps.bdimg.com/libs/jquerymobile/1.4.5/jquery.mobile-1.4.5.min.css">
    <script src="http://apps.bdimg.com/libs/jquery/1.10.2/jquery.min.js"></script>
    <script src="http://apps.bdimg.com/libs/jquerymobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
    <script>
        var animate_done = 1;
        $(document).ready(function () {
            $("#card1").on("swipeleft", function () {
                if (animate_done == 1) {
                    animate_done =0;
                    $("#card1").addClass("animated rotateOutUpLeft back-card");
                    setTimeout(function () {
                        $("#card1").removeClass("animated rotateOutUpLeft front-card");
                    }, 1000);

                    $("#card2").addClass("animated zoomIn front-card");
                    setTimeout(function () {
                        $("#card2").removeClass("animated zoomIn back-card");
                        animate_done = 1;
                    }, 1000);
                }
            });
            $("#card2").on("swipeleft", function () {
                if (animate_done == 1) {
                    animate_done =0;
                    $("#card2").addClass("animated rotateOutUpLeft back-card");
                    setTimeout(function () {
                        $("#card2").removeClass("animated rotateOutUpLeft front-card");
                    }, 1000);

                    $("#card1").addClass("animated zoomIn front-card");
                    setTimeout(function () {
                        $("#card1").removeClass("animated zoomIn back-card");
                        animate_done = 1;
                    }, 1000);
                }
            });
            $("#card1").on("swiperight", function () {
                if (animate_done == 1) {
                    animate_done =0;
                    $("#card1").addClass("animated rotateOutUpRight back-card");
                    setTimeout(function () {
                        $("#card1").removeClass("animated rotateOutUpRight front-card");
                    }, 1000);

                    $("#card2").addClass("animated zoomIn front-card");
                    setTimeout(function () {
                        $("#card2").removeClass("animated zoomIn back-card");
                        animate_done = 1;
                    }, 1000);
                }
            });
            $("#card2").on("swiperight", function () {
                if (animate_done == 1) {
                    animate_done =0;
                    $("#card2").addClass("animated rotateOutUpRight back-card");
                    setTimeout(function () {
                        $("#card2").removeClass("animated rotateOutUpRight front-card");
                    }, 1000);

                    $("#card1").addClass("animated zoomIn front-card");
                    setTimeout(function () {
                        $("#card1").removeClass("animated zoomIn back-card");
                        animate_done = 1;
                    }, 1000);
                }
            });
        });
    </script>
    <style>
        .card {
            border-radius: 30px;
            position: absolute;
            top: 20%;
            left: 30%;
            z-index: 99;
        }

        .front-card {
            float: left;
            overflow: hidden;
            z-index: 20;
            height: 400px;
            width: 300px;
            background: white;
            border: 6px solid rgb(255, 96, 96);
        }

        .back-card {
            z-index: 10;
            overflow: hidden;
            height: 400px;
            width: 300px;
            background: white;
            border: 6px solid rgb(255, 96, 96);
        }
    </style>
</head>

<body>
    <div class="card">
        <div class="front-card card" id="card1">
            hello there!
        </div>
        <div class="back-card card" id="card2">
            gen--eral kenobi!
        </div>
    </div>
</body>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值