admin管理员组文章数量:1345164
I have a div which has an ng-style attribute with an rgba value that uses a $scope variable for the alpha value:
ng-style="{'background-color': 'rgba(255,0,0,{{ alphaValue / 100}})'}"
I have an input slider which changes the value of alphaValue. I can see the change of the value using the console.log and the rgba value is being updated in the debugger in the html. It is just not being applied in the view.
Any suggestions?
I have a div which has an ng-style attribute with an rgba value that uses a $scope variable for the alpha value:
ng-style="{'background-color': 'rgba(255,0,0,{{ alphaValue / 100}})'}"
I have an input slider which changes the value of alphaValue. I can see the change of the value using the console.log and the rgba value is being updated in the debugger in the html. It is just not being applied in the view.
Any suggestions?
Share Improve this question asked Jul 28, 2015 at 19:31 GusGusGusGus 2506 silver badges17 bronze badges 3-
1
Try using -
ng-style="{'background-color': 'rgba(255,0,0,alphaValue / 100)'}"
– Nikhil Aggarwal Commented Jul 28, 2015 at 19:37 - no that won't work, you need the {{ }} to read the alphavalue. – GusGus Commented Jul 28, 2015 at 19:40
- remove {{}} from around alphaValue – Liam Commented Jul 28, 2015 at 20:06
3 Answers
Reset to default 6It would simply look like below
ng-style="{'background-color': 'rgba(255,0,0,'+ (alphaValue/ 100) +')'}"
Create a controller method get the style object. Its cleaner approach.
HTML
ng-style="ctrl.getElementStyle(alphaValue)"
CONTROLLER
ctrl.getElementStyle = function (alphaValue) {
var alpha = alphaValue / 100;
return {'background': 'rgba(255,0,0,' + alpha +')'};
};
I suspect you will need to resort to using a controller method:
$scope.getRGBA = function(alpha){
return 'rgba(255,0,0,'+ alpha / 100 + ')';
}
HTML
ng-style="{'background-color': getRGBA (alphaValue)}"
Should make sure alpha
isn't undefined also and set a default
本文标签: javascriptRgba value is not updated in ngstyleStack Overflow
版权声明:本文标题:javascript - Rgba value is not updated in ng-style - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743790914a2539550.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论