我需要以实际大小显示图像,即使它比它的容器大。我尝试了使用 Image 变量并使用以下方法捕获加载大小的技巧:
HTML:
<div ng-controller="MyCtrl">
<input ng-model="imageurl" type="url" />
<button ng-click="loadimage()" type="button">Load Image</button>
<img ng-src="{{image.path}}"
style="width: {{image.width}}px; height: {{image.height}}px" />
</div>
Javascript:
.controller("MyCtrl", ["$scope", function ($scope) {
$scope.image = {
path: "",
width: 0,
height: 0
}
$scope.loadimage = function () {
var img = new Image();
img.onload = function () {
$scope.image.width = img.width;
$scope.image.height = img.height;
$scope.image.path = $scope.imageurl;
}
img.src = $scope.imageurl;
}
}]);
此脚本有效,但如果图像很大,则仅在多次单击按钮后才有效。
我应该怎么做才能让它一键运行?
有没有比这更好的方法来发现图像大小?