選択した画像をギャラリーに展開しようとしました。私は拡大作業がありますが、それはセットの最初のイメージでのみ機能します。私はセット内の別の画像をクリックすると最初の一つはここに私の角のjsコードクリックで拡大する画像のギャラリーに画像を取得しようとしています
var app = angular.module('myApp', []);
app.controller('AlbumCtrl', function ($scope, $http) {
$http.get("http://jsonplaceholder.typicode.com/albums").then(function(response) {
$scope.albumData = response.data;
console.log($scope.albumData);
});
});
app.controller('PhotoCtrl', function($scope, $http) {
$http.get("http://jsonplaceholder.typicode.com/photos").then(function(response) {
$scope.photoData = response.data;
$scope.zoom = function() {
var imageId = document.getElementById('view');
if(imageId.style.width == "1000px"){
imageId.style.width = "600px";
imageId.style.height = "600px";
}else{
imageId.style.width = "1000px";
imageId.style.height = "1000px";
}
};
// console.log($scope.photoData);
});
});
任意のヘルプは素晴らしいだろうだ
<div ng-repeat="album in albumData|filter:q" id="thumbWrapper">
<h1>{{album.id}}</h1>
<h2 ng-click="showme = !showme">{{album.title}}</h2>
<div id="thumbList"ng-show="showme"class="albumContent">
<ul ng-controller="PhotoCtrl" id="thumbList">
<li ng-repeat="photo in photoData" ng-if="album.userId == photo.albumId">
<img id="view" ng-click="zoom()" ng-src={{photo.url}}>
</li>
</ul>
</div>
</div>
</div>
を展開しますです!
こんにちはイムこのエラーを取得クリック火事、このコードを使用した後:にReferenceError:インデックスしかし、これはあなたのウェブサイト
CSS内のすべての画像に適用され、注意が必要(コンパイル(angular.min.js:239)、:4:210のevalで) でb。$ scope.zoom(album.js:15) e(angular.min.js :284) 。b。$ eval(angular.min.js:148) b。$ apply(angular.min.js:149) at HTMLImageElement。 (angular.min.js:284) hg(angular.min.js:39) HTMLImageElement.d(angular.min.js:39) –
Zohranio
インデックスパラメータをHTMLとHTMLの両方の関数に渡しましたか? js –
はい私はhtmlでこれを行いました:とjs:$ scope.zoom = function(){ var elem = "view" + index; var imageId = document.getElementById( 'elem'); if(imageId.style.width == "1000px"){ imageId.style.width = "600px"; imageId.style.height = "600px"; } else { imageId.style.width = "1000px"; } }; – Zohranio