3a3ecabe
Imshann
init
|
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<es-image-preview-group>
<es-image d-src="{{url}}" width="200" height="200"></es-image>
<es-image d-src="{{url}}" width="200" height="200"></es-image>
</es-image-preview-group>
</div>
</div>
<script src="https://cdn.staticfile.org/angular.js/1.2.28/angular.min.js"></script>
<script src="../dist/ng-antd.js"></script>
<script>
angular
.module("esNgAntd")
.controller("mainCtrl", function ($scope) {
$scope.url="https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png";
});
</script>
</body>
</html>
|