다음과 같이 내 문제를 처리하고 있습니다.
ng-style="{ width: getTheValue() }"
그러나 컨트롤러 측 에서이 기능을 사용하지 않으려면 다음과 같이하십시오.
ng-style="{ width: myObject.value == 'ok' ? '100%' : '0%' }"
어떻게해야합니까?
다음과 같이 내 문제를 처리하고 있습니다.
ng-style="{ width: getTheValue() }"
그러나 컨트롤러 측 에서이 기능을 사용하지 않으려면 다음과 같이하십시오.
ng-style="{ width: myObject.value == 'ok' ? '100%' : '0%' }"
어떻게해야합니까?
답변:
@Yoshi가 말했듯이, 각도 1.1.5부터 변경없이 사용할 수 있습니다.
각도 <1.1.5를 사용하는 경우 ng-class를 사용할 수 있습니다 .
.largeWidth {
width: 100%;
}
.smallWidth {
width: 0%;
}
// [...]
ng-class="{largeWidth: myVar == 'ok', smallWidth: myVar != 'ok'}"
간단한 예 :
<div ng-style="isTrue && {'background-color':'green'} || {'background-color': 'blue'}" style="width:200px;height:100px;border:1px solid gray;"></div>
{ '배경색': '녹색'} 반환 true
또는 같은 결과 :
<div ng-style="isTrue && {'background-color':'green'}" style="width:200px;height:100px;border:1px solid gray;background-color: blue"></div>
다른 조건부 가능성 :
<div ng-style="count === 0 && {'background-color':'green'} || count === 1 && {'background-color':'yellow'}" style="width:200px;height:100px;border:1px solid gray;background-color: blue"></div>
isTrue
하고 {'background-color':'green'}
또는 확인 만하고 그것이 어떻게 작동하는지 isTrue
넣어 background
줄 것입니다.
당신은 그렇게 달성 할 수 있습니다 :
ng-style="{ 'width' : (myObject.value == 'ok') ? '100%' : '0%' }"
@jfredsilva는 분명히 질문에 대한 가장 간단한 대답 을 가지고 있습니다 .
ng-style = "{ 'width': (myObject.value == 'ok')? '100 %': '0 %'}"
그러나 당신은 정말로 더 복잡한 것에 대한 나의 대답을 고려하고 싶을 것입니다.
삼진과 같은 예 :
<p ng-style="{width: {true:'100%',false:'0%'}[myObject.value == 'ok']}"></p>
더 복잡한 것 :
<p ng-style="{
color: {blueish: 'blue', greenish: 'green'}[ color ],
'font-size': {0: '12px', 1: '18px', 2: '26px'}[ zoom ]
}">Test</p>
인 경우 $scope.color == 'blueish'
색상이 '파란색'이됩니다.
인 경우 $scope.zoom == 2
글꼴 크기는 26px입니다.
angular.module('app',[]);
function MyCtrl($scope) {
$scope.color = 'blueish';
$scope.zoom = 2;
}
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.1/angular.min.js"></script>
<div ng-app="app" ng-controller="MyCtrl" ng-style="{
color: {blueish: 'blue', greenish: 'green'}[ color ],
'font-size': {0: '12px', 1: '18px', 2: '26px'}[ zoom ]
}">
color = {{color}}<br>
zoom = {{zoom}}
</div>
{<value>:'<string>'}[<$scope.var>]}
은 어디에서 왔습니까?
일반적인 메모에서, 당신의 조합을 사용할 수 있습니다 ng-if
및 ng-style
배경 이미지의 변화와 조건 변경을 통합합니다.
<span ng-if="selectedItem==item.id"
ng-style="{'background-image':'url(../images/'+'{{item.id}}'+'_active.png)','background-size':'52px 57px','padding-top':'70px','background-repeat':'no-repeat','background-position': 'center'}"></span>
<span ng-if="selectedItem!=item.id"
ng-style="{'background-image':'url(../images/'+'{{item.id}}'+'_deactivated.png)','background-size':'52px 57px','padding-top':'70px','background-repeat':'no-repeat','background-position': 'center'}"></span>
Uncaught Error: Template parse errors: Can't bind to 'ng-style' since it isn't a known property of 'div'
나를 위해 오류
또한 삼항 연산자에 대한 다음 구문이 작동합니다.
ng-style="<$scope.var><condition> ? {
'<css-prop-1>':((<value>) / (<value2>)*100)+'%',
'<css-prop-2>':'<string>'
} : {
'<css-prop-1>':'<string>',
'<css-prop-2>':'<string>'
}"
<value>
$ scope 속성 값은 어디에 있습니까 ? 예를 들면 다음과 같습니다.
ng-style="column.histograms.value=>0 ?
{
'width':((column.histograms.value) / (column.histograms.limit)*100)+'%',
'background':'#F03040'
} : {
'width':'1px',
'background':'#2E92FA'
}"
```
이것은 css 속성 값에 대한 계산을 허용합니다.
스타일을 추가하기 위해 ng-class를 사용하고 있습니다 :-
ng-class="column.label=='Description' ? 'tableStyle':
column.label == 'Markdown Type' ? 'Mtype' :
column.label == 'Coupon Number' ? 'couponNur' : ''
"
스타일을 제공하기 위해 angular.js 에서 ng-class 지시문과 함께 삼항 연산자 를 사용 합니다. 그런 다음 .css 또는 .scss 파일 에서 클래스 스타일을 정의 하십시오. 예 :-
.Mtype{
width: 90px !important;
min-width: 90px !important;
max-width: 90px !important;
}
.tableStyle{
width: 129px !important;
min-width: 129px !important;
max-width: 129px !important;
}
.couponNur{
width: 250px !important;
min-width: 250px !important;
max-width: 250px !important;
}