jQuery和CSS点击添加到购物车特效
js文件请到演示页面查看
XML/HTML Code
- <div class="cd-cart-container empty">
- <a href="#0" class="cd-cart-trigger">
- Cart
- <ul class="count"> <!-- cart items count -->
- <li>0</li>
- <li>0</li>
- </ul> <!-- .count -->
- </a>
- <div class="cd-cart">
- <div class="wrapper">
- <header>
- <h2>Cart</h2>
- <span class="undo">Item removed. <a href="#0">Undo</a></span>
- </header>
- <div class="body">
- <ul>
- <!-- products added to the cart will be inserted here using JavaScript -->
- </ul>
- </div>
- <footer>
- <a href="#0" class="checkout btn"><em>Checkout - $<span>0</span></em></a>
- </footer>
- </div>
- </div> <!-- .cd-cart -->
- </div> <!-- cd-cart-container -->
XML/HTML Code
- <a href="#0" class="cd-add-to-cart" data-price="25.99">添加到购物车</a>
原文地址:http://www.freejs.net/article_jquerywenzi_597.html