2
13693261870
2022-09-16 653761a31dfeb50dd3d007e892d69c90bf0cdafc
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
136
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8" />
    <title>Title</title>
 
    <link href="/js/PingTaiMenHuFile/GongNengQuHua/bootstrap.min.css" rel="stylesheet" type="text/css">
    <link href="/js/PingTaiMenHuFile/GongNengQuHua/bootstrap-responsive.min.css" rel="stylesheet" type="text/css">
    <link href="/js/PingTaiMenHuFile/GongNengQuHua/style.css" rel="stylesheet" type="text/css">
    <link href="/js/PingTaiMenHuFile/GongNengQuHua/jquery.easy-pie-chart.css" rel="stylesheet" type="text/css">
 
    <script src="/js/PingTaiMenHuFile/GongNengQuHua/app.js"></script>
    <script src="/js/PingTaiMenHuFile/GongNengQuHua/jquery-1.8.3.min.js" type="text/javascript"></script>
    <script src="/js/PingTaiMenHuFile/GongNengQuHua/jquery.easy-pie-chart.js"></script>
 
    <style>
        body {
            color: #fff;
            background: transparent;
        }
        .title {
            font-size: 14px !important;
            white-space :  nowrap ;
            color: #fff !important;
        }
 
        canvas {
            background: transparent !important;
        }
 
        .row-fluid .span2 {
            margin: 0px 2.7% !important;
        }
    </style>
    <script>
        var Index = function () {
            return {
                init: function () {
                },
 
                initMiniCharts: function () {
 
                    $('.easy-pie-chart .number').easyPieChart({
                        animate: 1000,
                        size: 120,
                        lineWidth: 8,
                        barColor: '#47C2D1'
                    });
                },
 
                initIntro: function () {
 
                }
            };
        }();
 
        jQuery(document).ready(function () {
            try {
                App.init();
                $("#MainDiv").css("height", window.innerHeight);
                Index.initMiniCharts();
            } catch (e) { }
        });
 
    </script>
</head>
<body>
<div>
    <!--<div style="float: left; background-color: #C1E4F2;font-size: 13pt; width: 100px; height: 200px;line-height: 200px;text-align: center;display: none;">-->
        <!--海域使用-->
    <!--</div>-->
    <div id="MainDiv" style="float: left; background:transparent; font-size: 12pt; width: 100%; text-align: center; padding-top: 6px; height: 741px;">
        <div style="padding-bottom: 6px;font-size: 18px;font-weight:normal;color: fff;">
            海洋功能区划指标管控
        </div>
        <div class="row-fluid">
            <!--<div class="span1"></div>-->
            <div class="span2 popovers" data-trigger="hover" data-placement="top">
                <div class="easy-pie-chart">
                    <div class="number easyPieChart" data-percent="1.4" style="width: 120px; height: 120px; line-height: 120px;"><span>1.4</span>%
                        <canvas width="120" height="120"></canvas></div>
                    <span class="title" href="#">
                            74.2 | 5221.7 公顷<br>
                            工业与城镇用海
                        </span>
                </div>
            </div>
 
            <div class="span2 popovers" data-trigger="hover" data-placement="top">
                <div class="easy-pie-chart">
                    <div class="number easyPieChart" data-percent="34.5" style="width: 120px; height: 120px; line-height: 120px;"><span>34.5</span>%
                        <canvas width="120" height="120"></canvas></div>
                    <span class="title" href="#">
                            1802.6 | 5221.7 公顷<br>
                            保护区
                        </span>
                </div>
            </div>
            <div class="span2 popovers" data-trigger="hover" data-placement="top">
                <div class="easy-pie-chart">
                    <div class="number easyPieChart" data-percent="8.2" style="width: 120px; height: 120px; line-height: 120px;"><span>8.2</span>%
                        <canvas width="120" height="120"></canvas></div>
                    <span class="title" href="#">
                            430.3 | 5221.7 万公顷<br>
                            保留区
                        </span>
                </div>
            </div>
            <div class="span2 popovers" data-trigger="hover" data-placement="top">
                <div class="easy-pie-chart">
                    <div class="number easyPieChart" data-percent="44.6" style="width: 120px; height: 120px; line-height: 120px;">
                        <span>44.6</span>%
                        <canvas width="120" height="120"></canvas></div>
                    <span class="title" href="#">
                            10057.0 | 22531.39 千米<br>
                            自然岸线保有率
                        </span>
                </div>
            </div>
            <div class="span2 popovers" data-trigger="hover" data-placement="top">
                <div class="easy-pie-chart">
                    <div class="number easyPieChart" data-percent="9.3" style="width: 120px; height: 120px; line-height: 120px;">
                        <span>9.3</span>%
                        <canvas width="120" height="120"></canvas></div>
                    <span class="title" href="#">
                            236.0 | 2538.8 万公顷<br>
                            养殖功能区
                        </span>
                </div>
            </div>
            <!--<div class="span1"></div>-->
        </div>
    </div>
</div>
</body>
</html>