Saiba todas as features que te ajudarão a produzir sistemas mais rapidamente.
Módulos de carrinhos de compras.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<div class="ls-cart">
<input type="checkbox" class="ls-checkbox-cart">
<header class="ls-cart-header">
<span class="ls-ico-cart ls-float-left"></span>
<small>MEU CARRINHO</small>
<strong>4 produto(s)</strong>
</header>
<div class="ls-cart-content">
<ul class="ls-no-list-style">
<li>
<h2 class="ls-title-product">
<strong>01</strong> Email Marketing Locaweb
</h2>
<p> (Identificador) </p>
<a href="">Excluir</a>
</li>
<li>
<h2 class="ls-title-product">
<strong>02</strong> Monitor LED 27"
</h2>
<p> (Identificador) </p>
<a href="">Excluir</a>
</li>
<li>
<h2 class="ls-title-product">
<strong>06</strong> Honda FIT 2010 4p Flex 1.4 16v
</h2>
<p> (Identificador) </p>
<a href="">Excluir</a>
</li>
<li>
<h2 class="ls-title-product">
<strong>01</strong> Lorem Ipsum is simply dummy text
</h2>
<p> (Identificador) </p>
<a href="">Excluir</a>
</li>
</ul>
<footer class="ls-cart-footer ls-txt-center">
<a href="" class="ls-btn-primary">Finalizar Compra</a>
</footer>
</div>
</div>