index.html
933 Bytes
<html ng-app="myApp">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题</title>
<link rel="stylesheet" type="text/css" href="../directive/style.css">
<link rel="stylesheet" type="text/css" href="../spm_modules/xn-icon-common/1.0.0/iconfont.css">
<script type="text/javascript" src="../spm_modules/jquery/1.7.2/jquery.js"></script>
<script type="text/javascript" src="../spm_modules/angular/1.3.9/angular.js"></script>
<script type="text/javascript" src="../directive/previews.js"></script>
</head>
<body ng-controller="MyController">
<div style="width:200px; height:350px;">
<img class="image-magnifier" src="24.JPG" img-url="24.JPG" style="height:350px;">
</div>
</body>
<script type="text/javascript">
angular.module("myApp", ["xn.directive.preview"])
.controller("MyController", ["$scope", function($scope) {
$scope.imageUrl = "25.JPG"
}]);
</script>
</html>