-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (44 loc) · 1.42 KB
/
Copy pathindex.html
File metadata and controls
44 lines (44 loc) · 1.42 KB
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
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--------------- CSS --------------------->
<link rel="stylesheet" href="style.css">
<title>Source Code of Product Zoom Hover Effect</title>
</head>
<body>
<div class="container">
<div class="card">
<div id="picbox" class="picbox">
<img id="product_img" src="suit.jpg">
</div>
<div class="details">
<h3>Peter England<br>
<span>Men's Suit</span>
</h3>
<h4>Product Details</h4>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Cum, modi.</p>
<h4>Size</h4>
<ul class="size">
<li>36</li>
<li>38</li>
<li>40</li>
<li>42</li>
<li>44</li>
<li>46</li>
</ul>
<div class="price">
<h2><sup>$</sup>299<small>.99</small></h2>
<a href="#">Buy Now</a>
</div>
</div>
</div>
<div id="mouse_zoom" class="img-zoom-lens"></div>
<div id="zoom" class="img-zoom-result" ></div>
</div>
<!--------------- SCRIPT --------------------->
<script src="script.js"></script>
</body>
</html>