style.css
3.12 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/*imagePreview begin*/
.shade_div {
background-color: #000000;
height: 100%;
left: 0;
overflow: hidden;
position: fixed;
top: 0;
width: 100%;
z-index: 9999;
}
.shade_div .img_div {
width: 600px;
height: 600px;
margin: 10% auto;
border-radius: 8px;
text-align: center;
cursor:pointer;
border: solid 10px white;
-webkit-border-text-align: center;
-webkit-box-shadow: #666 0px 0px 10px;
-moz-box-shadow: #666 0px 0px 10px;
box-shadow: #666 0px 0px 10px;
}
.shade_div .img_div .img_cl {
height:100%;
}
.shade_div .img_div .close_div {
position: absolute;
margin-left: 595px;
margin-top: -28px;
color: #bebebe;
background: white;
padding: 2px;
border-radius: 18px;
line-height: 1;
}
.shade_div .img_div .close_div i {
font-size:30px;
}
.shade_div .img_div .close_div:hover {
color:#4a89dc;
}
/*imagePreview end*/
/*imageMagnifier*/
.magnifier_out_div {
background-color: #f9f9f7;
height: 100%;
left: 0;
overflow: hidden;
position: fixed;
top: 0;
width: 100%;
z-index: 9999;
}
.magnifier_out_div .img_div {
height: 600px;
margin: 10% auto;
text-align: center;
}
.magnifier_out_div .delete_div {
width: 40px;
height: 55px;
float: right;
border: solid 1px #cdcdcd;
position: relative;
z-index: 100;
background: #cdcdcd;
opacity: 0.8;
border-bottom-left-radius: 60px;
padding-left: 20px;
padding-top: 5px;
}
.magnifier_out_div .delete_div .icon-delete {
font-size: 30px;
cursor: pointer;
}
.magnifier_out_div .delete_div:hover {
color: #ff0000;
}
.magnifier_out_div .img_div .img_cl {
max-width: 200px;
max-height: 150px;
cursor:pointer;
animation: mychange 2s;
-webkit-animation:mychange 2s;
-moz-animation:mychange 2s;
-o-animation:mychange 2s;
animation-fill-mode: both;
-webkit-animation-fill-mode: both;
-moz-animation-fill-mode: both;
-o-animation-fill-mode: both;
}
@-webkit-keyframes mychange {
100% {
transform:scale(5);
margin: 10% auto;
box-shadow: -2px -2px 2px #888888;
-webkit-box-shadow: -2px -2px 2px #888888;
-moz-box-shadow: -2px -2px 2px #888888;
-o-box-shadow: -2px -2px 2px #888888;
}
}
@keyframes mychange {
100% {
transform:scale(5);
margin: 10% auto;
box-shadow: -2px -2px 2px #888888;
-webkit-box-shadow: -2px -2px 2px #888888;
-moz-box-shadow: -2px -2px 2px #888888;
-o-box-shadow: -2px -2px 2px #888888;
}
}
@-moz-keyframes mychange {
100% {
transform:scale(5);
margin: 10% auto;
box-shadow: -2px -2px 2px #888888;
-webkit-box-shadow: -2px -2px 2px #888888;
-moz-box-shadow: -2px -2px 2px #888888;
-o-box-shadow: -2px -2px 2px #888888;
}
}
@-o-keyframes mychange {
100% {
transform:scale(5);
margin: 10% auto;
box-shadow: -2px -2px 2px #888888;
-webkit-box-shadow: -2px -2px 2px #888888;
-moz-box-shadow: -2px -2px 2px #888888;
-o-box-shadow: -2px -2px 2px #888888;
}
}
/*imageMagnifier*/