Blame view

example/empty.html 821 Bytes
3a3ecabe   Imshann   init
1
2
3
4
5
6
  <!DOCTYPE html>
  <html>
  
  <head>
      <meta charset="UTF-8" />
      <title></title>
3a3ecabe   Imshann   init
7
8
9
10
11
12
13
14
      <style>
          .container > div {
              margin-bottom: 10px;
          }
      </style>
  </head>
  
  <body>
1b6f912f   Imshann   优化
15
      <div ng-app="esNgAntd" ng-controller="mainCtrl">
3a3ecabe   Imshann   init
16
17
18
          <div class="container" style="padding: 50px">
              <div>
                  <es-empty></es-empty>
1b6f912f   Imshann   优化
19
20
  
                  <es-empty image="presented_image_simple"></es-empty>
3a3ecabe   Imshann   init
21
22
23
24
25
26
              </div>
              <div>
              </div>
          </div>
      </div>
      <script src="https://cdn.staticfile.org/angular.js/1.2.28/angular.min.js"></script>
1b6f912f   Imshann   优化
27
      <script src="../dist/ng-antd.js"></script>
3a3ecabe   Imshann   init
28
29
      <script>
          angular
1b6f912f   Imshann   优化
30
              .module("esNgAntd")
3a3ecabe   Imshann   init
31
32
33
34
              .controller("mainCtrl", function ($scope) {
                  
              });
      </script>
3a3ecabe   Imshann   init
35
36
37
  </body>
  
  </html>