在AngularJS中添加’ng-style’的背景图像

前端之家收集整理的这篇文章主要介绍了在AngularJS中添加’ng-style’的背景图像前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我似乎无法使用控制器来设置div的CSS背景属性.到目前为止,这是我的代码,根据文档:

HTML

<div class="hero" ng-controller="HeroCtrl" ng-style="heroImage"></div>

JS:

'use strict';

angular.module('AppliedSiteApp').controller('HeroCtrl',function ($scope) {

    $scope.heroImage = {
        background: 'images/brick.jpg'
    };

    console.log($scope.heroImage);

});

CSS:

.hero {
    width: 100%;
    min-height: 350px;
    background-position: center center;
}

我也尝试在Fiddle here中复制这个设置.有没有人有任何想法?

$scope.heroImage = {
    background: 'url(images/brick.jpg)'
};

background-image需要url()才能工作.

原文链接:https://www.f2er.com/angularjs/140978.html

猜你在找的Angularjs相关文章