admin管理员组文章数量:1345131
Unable to set gradients using angular js ng-style directive.. able to set normal color by using below
<span ng-style="{'background-color': slidercolor}">works</span>
But for gradient it doesnt work
Below is the jsfiddle for the same.
<span ng-style="{'background-color':'-webkit-gradient(linear, left top, right top, color- stop(0%,'slidercolor'), color-stop(100%,rgba(125,185,232,0)))'}">didnt work</span>
/
Also please let me know which should be enclosed in quotes and which should not..
Unable to set gradients using angular js ng-style directive.. able to set normal color by using below
<span ng-style="{'background-color': slidercolor}">works</span>
But for gradient it doesnt work
Below is the jsfiddle for the same.
<span ng-style="{'background-color':'-webkit-gradient(linear, left top, right top, color- stop(0%,'slidercolor'), color-stop(100%,rgba(125,185,232,0)))'}">didnt work</span>
http://jsfiddle/sT8ar/1/
Also please let me know which should be enclosed in quotes and which should not..
Share Improve this question edited Sep 21, 2013 at 19:48 Pavlo 45k14 gold badges83 silver badges114 bronze badges asked Sep 21, 2013 at 18:32 anandaravindananandaravindan 2,5516 gold badges29 silver badges37 bronze badges 3- what browser are you using? – box86rowh Commented Sep 21, 2013 at 18:39
- this one should work on ie10: jsfiddle/sT8ar/2 – box86rowh Commented Sep 21, 2013 at 18:43
- the issue is most browsers require different code to display a gradient, what you have is meant for webkit browsers only, like chrome and safari. – box86rowh Commented Sep 21, 2013 at 18:44
2 Answers
Reset to default 9You got two problems here:
-webkit-gradient()
produces<image>
, not<color>
, it shoud be used asbackground-image
.- In Angular expression concatenation is done with a
+
(plus sign).
So the correct syntax is (demo):
<span ng-style="{'background-image':'-webkit-gradient(linear, left top, right top, color-stop(0%,'+ slidercolor+'), color-stop(100%,rgba(125,185,232,0)))'}">
Works now too.
</span>
I hope this helps you.
controller
private setStyles() {
const rgbaGradientStart = hexToRgba(this.hexGradientStart, 1);
const rgbaGradientEnd = hexToRgba(this.hexGradientEnd, 0.1);
const gradientParams = `left, ${rgbaGradientStart} 0%, ${rgbaGradientEnd} 50%`;
this.gradientStyles = {
'background-image': `-webkit-linear-gradient(${gradientParams})`,
// 'background-image': `-moz-linear-gradient(${gradientParams})`,
// 'background-image': `-o-linear-gradient(${gradientParams})`,
// 'background-image': `-ms-linear-gradient(${gradientParams})`,
// 'background-image': `linear-gradient(${gradientParams})`,
}
}
template
<div
class="super-gradient"
[ngStyle]="gradientStyles"
></div>
P.S.: you may also be interested in this
https://github./angular/angular/issues/11362#issuement-244816438
本文标签: javascriptAngular js applying Gradients with ng styleStack Overflow
版权声明:本文标题:javascript - Angular js applying Gradients with ng style - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743749169a2532325.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论