jquery 弹出框,如下图 ,加入购物车效果????

 我来答
hyjiacan
推荐于2016-05-31 · TA获得超过3912个赞
知道小有建树答主
回答量:894
采纳率:100%
帮助的人:1085万
展开全部
<!DOCTYPE html>

<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta charset="utf-8" />
    <title></title>
    <script type="text/javascript" src="jquery.min.js"></script>
    <style type="text/css">
        .des {
            width: 400px;
            margin: 0 auto;
        }

        .add2carttip {
            width: 220px;
            height: 90px;
            padding: 0;
            border: 1px solid rgba(69, 66, 66, 0.91);
            background-color: #393939;
            margin: 0 auto;
            border-radius: 12px 12px;
            position: fixed;
            display:none;
        }

            .add2carttip > div {
                vertical-align: middle;
                color: #D0D0D0;
                text-align: center;
                font-size: 1.2em;
                font-weight: bold;
                margin: 0;
            }

        .c-title {
            height: 39px;
            line-height: 39px;
            border-bottom: 1px #D0D0D0 solid;
        }

        .c-content {
            height: 49px;
            line-height: 49px;
            border-top: 1px #D0D0D0 solid;
        }

        .c-add, .c-sub {
            display: inline-block;
            vertical-align: middle;
            width: 20px;
            font-size: 1.5em;
            font-weight: bold;
            cursor: pointer;
        }

        .c-sub {
            vertical-align: -5px;
            font-size: 1.8em;
        }

        .c-count {
            width: 30px;
            height: 30px;
            border-radius: 15px;
            border: none;
            text-align: center;
            font-size: inherit;
        }

        .c-action {
            display: inline-block;
            cursor: pointer;
        }

            .c-add:hover, .c-sub:hover, .c-action:hover {
                color: #FAFAFA;
            }
    </style>
    <script type="text/javascript">
        $(function () {
            var $tip = $('.add2carttip');
            var $add = $('.c-add');
            var $sub = $('.c-sub');
            var $count = $('.c-count');
            var $action = $('.c-action');

            var $win = $(window);

            function setTipPosition() {
                $tip.animate({
                    left: (($win.width() - $tip.width()) / 2) + 'px',
                    top: ($win.height() * 1 / 3) + 'px'
                }, 500);
            }
            setTipPosition();
            $win.on('resize', setTipPosition);

            $tip.on('selectstart', function (e) { e.preventDefault(); return false; });

            $add.on('click', function () {
                $count.val(parseInt($count.val()) + 1);
            });
            $sub.on('click', function () {
                $count.val(parseInt(($count.val()) - 1) || 1);
            });
            $action.on('click', function () {
                alert('add ' + $count.val() + ' to cart. ');
            });
            $('.toggleTip').on('click', function () {
                $tip.fadeToggle(500);
            });
        });
    </script>

</head>
<body>
    <div class="des">
        不支持IE9以下的IE浏览器
        <a href="javascript:void();" class="toggleTip">显示或隐藏</a>
    </div>
    <div class="add2carttip">
        <div class="c-title">
            商品详情
        </div>
        <div class="c-content">
            <span class="c-add">+</span>
            <input type="text" class="c-count" value="1" />
            <span class="c-sub">-</span>
            <span class="c-action">
                加入购物车
            </span>
        </div>
    </div>
</body>
</html>

代码 。。。

网络上的大小事
2014-11-13 · 网络运维,网站运营,跨境电商运营那些事.
网络上的大小事
采纳数:63 获赞数:203

向TA提问 私信TA
展开全部
触发事件。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
辰沙00
2014-11-13 · 超过14用户采纳过TA的回答
知道答主
回答量:66
采纳率:0%
帮助的人:28.3万
展开全部
可以用jquery dialog 插件
追问
能写下具体的代码,吗
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式