Commit 64684744e3274c8de1b91a77befec5c7079db264

Authored by Imshann
1 parent 4b23b387

doc(icon): 新增示例

Showing 1 changed file with 30 additions and 0 deletions   Show diff stats
example/icon.html 0 → 100644
... ... @@ -0,0 +1,30 @@
  1 +<!DOCTYPE html>
  2 +<html>
  3 +
  4 +<head>
  5 + <meta charset="UTF-8" />
  6 + <title></title>
  7 + <style>
  8 + .container {
  9 + padding: 50px;
  10 + }
  11 + </style>
  12 +</head>
  13 +
  14 +<body>
  15 + <div ng-app="esNgAntd" ng-controller="mainCtrl">
  16 + <div class="container">
  17 + <es-icon type="PlayCircleOutlined"></es-icon>
  18 + </div>
  19 + </div>
  20 + <script src="https://cdn.staticfile.org/angular.js/1.2.28/angular.min.js"></script>
  21 + <script src="../dist/ng-antd.js"></script>
  22 + <script>
  23 + angular
  24 + .module("esNgAntd")
  25 + .controller("mainCtrl", function ($scope) {
  26 + });
  27 + </script>
  28 +</body>
  29 +
  30 +</html>
0 31 \ No newline at end of file
... ...