-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcamshoot.css
More file actions
70 lines (58 loc) · 1 KB
/
camshoot.css
File metadata and controls
70 lines (58 loc) · 1 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
/* JQuery CamShoot Style
-- version 1.2
-- copyright 2018 abu@dzakiyyah.com
-- licensed under the MIT
-- filename jquery.camshoot.css
*/
.flasheffect{
opacity: 1;
-webkit-animation: flash 1s;
animation: flash 1s;
}
@-webkit-keyframes flash {
0% { opacity: .3; }
100% { opacity: 1; }
}
@keyframes flash {
0% { opacity: .3; }
100% { opacity: 1; }
}
.camera_toolbox{
position: absolute;
bottom: 20px;
width: 100%;
text-align: center;
}
.camera_toolbox a{
padding-left: 10%;
padding-right: 10%;
}
.camera_toolbox a img{
border:1px solid #ffffff;
padding: 5px;
border-radius: 10px;
}
.camera_toolbox a img{
cursor: pointer;
opacity: .1;
}
.camera_toolbox a img:hover{
opacity: 1;
}
.camera_toolbox a img#delete,
.camera_toolbox a img#save
{
visibility: hidden;
}
.snap_thumb{
top:3px;
left:3px;
text-align: left;
position: absolute;
}
.snap_thumb img{
border-radius: 5px;
}
.snap_thumb canvas{
display: none;
}