조건식이있는 AngularJS ng 스타일
다음과 같이 내 문제를 처리하고 있습니다.
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>
또한 삼항 연산자에 대한 다음 구문이 작동합니다.
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 속성 값에 대한 계산을 허용합니다.
단일 CSS 속성
ng-style="1==1 && {'color':'red'}"
여러 CSS 속성에 대해서는 아래를 참조하십시오.
ng-style="1==1 && {'color':'red','font-style': 'italic'}"
1 == 1을 조건식으로 바꿉니다.
여러 독립적 인 조건에서 아래와 같이하고 있으며 매력처럼 작동합니다.
<div ng-style="{{valueFromJS}} === 'Hello' ? {'color': 'red'} : {'color': ''} && valueFromNG-Repeat === '{{dayOfToday}}' ? {'font-weight': 'bold'} : {'font-weight': 'normal'}"></div>
스타일을 추가하기 위해 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;
}
참고 URL : https://stackoverflow.com/questions/19375695/angularjs-ng-style-with-a-conditional-expression
'Programing' 카테고리의 다른 글
setBackground vs setBackgroundDrawable (Android) (0) | 2020.04.03 |
---|---|
"확장 구성으로 인해 요청한 페이지를 제공 할 수 없습니다." (0) | 2020.04.03 |
다른 조각 문제에 대한 조각 (0) | 2020.04.03 |
Amazon Cloud Server에서 FTP 설정 (0) | 2020.04.03 |
데이터베이스에서보기를 작성하는 이유는 무엇입니까? (0) | 2020.04.03 |