다음과 같이 내 문제를 처리하고 있습니다.
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>
답변
당신은 그렇게 달성 할 수 있습니다 :
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>
답변
식과 함께 사용하려면 rigth 방법은 다음과 같습니다.
<span class="ng-style: yourCondition && {color:'red'};">Sample Text</span>
그러나 가장 좋은 방법은 ng-class를 사용하는 것입니다
답변
일반적인 메모에서, 당신의 조합을 사용할 수 있습니다 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>
답변
단일 CSS 속성
ng-style="1==1 && {'color':'red'}"
여러 CSS 속성에 대해서는 아래를 참조하십시오.
ng-style="1==1 && {'color':'red','font-style': 'italic'}"
1 == 1을 조건식으로 바꿉니다.