suerprisePlus
2024-06-05 3ed05b2ea37c4da7b0b4923991deb1d27f415027
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
.divPoint-camera-content {
    height: 30px;
}
 
.divPoint-camera-img {
    width: 30px;
    height: 30px;
    animation: cameraMove 1s linear infinite alternate;
    -webkit-animation: cameraMove 1s linear infinite alternate;
}
 
@keyframes cameraMove {
    from {
        margin-top: 20px;
    }
 
    to {
        margin-top: 0px;
    }
}
 
@-webkit-keyframes cameraMove {
    from {
        margin-top: 20px;
    }
 
    to {
        margin-top: 0px;
    }
}
 
.divPoint-camera-line {
    height: 120px;
    width: 5px;
    margin-top: 20px;
    border-left: 3px dashed #5b8fee;
    margin-left: calc(50% - 1px);
}
 
.divPoint-camera-point {
    border-radius: 50%;
    width: 8px;
    height: 8px;
    margin-left: calc(50% - 3px);
    background-color: #5b8fee;
}