shuishen
2022-03-18 d82f1fad3e576833ab3d24ec2fe2c279cbb5aa6b
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
#viewer-container {
 
    .dc-compass {
        top: 40px;
        left: 40px;
        transform: scale(1.6);
    }
 
    .dc-zoom-controller {
        top: 160px;
        left: 56px;
        transform: scale(1.6);
    }
 
    .dc-zoom-controller {
        background: #2196f3;
    }
 
    .dc-compass .out-ring {
        fill: #2196f3;
    }
 
    .dc-hawkeye-map {
        left: auto;
        right: 16px;
        bottom: 16px;
    }
 
    .dc-compass .gyro {
        fill: #2196f3;
    }
 
    .div-icon {
        .tag-entitys-box {
            animation: moveLayerIcon 0.5s linear 0;
        }
 
        .tag-entitys-box:hover {
            animation: moveLayerIcon 0.5s linear infinite;
        }
    }
 
 
}
 
@keyframes moveLayerIcon {
    0% {
        transform: translateY(0px);
    }
 
    25% {
        transform: translateY(-10px);
    }
 
    50% {
        transform: translateY(0px);
    }
 
    75% {
        transform: translateY(-10px);
    }
 
 
    100% {
        transform: translateY(0px);
    }
 
}