-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopupbutton.html
42 lines (38 loc) · 1000 Bytes
/
popupbutton.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>pop up button </title>
<style>
.main1{
width: 400px;
height: 400px;
border: 2px solid black;
margin: auto;
position: relative;
}
.main2{
width: 400px;
height: 50px;
background-color: black;
color: aliceblue;
position: absolute;
left: 0px;
bottom: -40px;
opacity: 0;
transition: 1s;
}
.main1:hover .main2{
bottom: 0px;
opacity: 70%;
}
</style>
</head>
<body>
<div class="main1">
<img src="prashant.JPG" alt="" width="100%" height="100%">
<input type="button" name="Add to cart" value="add to cart" class="main2">
</div>
</body>
</html>