AngularJS模板里面的指令。改变风格?

时间:2015-07-06 10:22:40

标签: javascript css angularjs angularjs-directive

指令内的css无法编译并导致单色绿色本身。我想为值标识符的不同值使用不同的颜色,并且css颜色应该相应地改变,但它总是平息到所有温度计小部件的最后颜色。请帮忙。

angular.module('directives').directive('thermometer', function(){
    return {
        restrict: 'AE'
        , replace: true
        , transclude:true
        ,scope : {
            value : "=",
            maxValue : "=" ,
            text:"@",
            percent:"="
            }
        ,template:  function(element, attrs) {
            var html = '<div style="float:left;margin-left:40px"><style> .donation-meter {margin-right:auto;margin-left:auto; width: 80px; } .donation-meter .glass { background: #e5e5e5; border-radius: 100px 100px 0 0; display: block; height: 100px; margin: 0 35px 10px; padding: 5px; position: relative; width: 20px; } .donation-meter .amount { background:{{color}}; border-radius: 100px; display: block; width: 20px; position: absolute; bottom: 5px; } .donation-meter strong { display: block; text-align: center; } .donation-meter .goal { font-size: 20px; } .donation-meter .total { font-size: 16px; position: absolute; right: 35px; } .bulb { background: #e5e5e5; border-radius: 100px; display: block; height: 50px; margin: 0 35px 10px; padding: 5px; position: relative; top: -20px; right: 15px; width: 50px; } .bulb .red-circle { background: {{color}}; border-radius: 100px; display: block; height: 50px; width: 50px; } .bulb .filler { background: {{color}}; border-radius: 100px 100px 0 0; display: block; height: 30px; width: 20px; position: relative; top: -65px; right: -15px; z-index: 30; } </style>';
            html += '<div class="donation-meter"> <b>{{text}}</b>';
            html +=   '<b class="goal">{{maxValue }}</b> <span class="glass"> <b class="total" style="bottom:{{(value/maxValue)*100}}%">{{value}}';
            html+= '</b> <span class="amount" style="height:{{(value/maxValue)*100}}%"></span> </span> <div class="bulb"> <span class="red-circle"></span> <span class="filler"> <span></span> </span> </div> </div></div>';

            return html;

        }
        ,link:function(scope){

            scope.$watch('value',function(newValue){
                console.log("--------------------------");
                console.log();
                if(newValue==75){
                    scope.color="blue";
                }
                if(newValue==76){
                    scope.color="green";
                }
            });
        }

    }
});

颜色总是平息到最后一个值。其余时间它工作正常。请帮忙。

3 个答案:

答案 0 :(得分:0)

不要将颜色放在类.amount上,而是将其放在具有类.amount的元素的样式中:

html+= '</b> <span class="amount" ng-style="{height:(value/maxValue)*100 + '%', background: color}"></span> ...

答案 1 :(得分:0)

将模板放在外部文件(如thermometer.html)上会更容易,您只需指定这样的位置:

angular.module('directives').directive('thermometer', function(){
    return {
        restrict: 'AE'
        , replace: true
        , transclude:true
        ,scope : {
            value : "=",
            maxValue : "=" ,
            text:"@",
            percent:"="
            }
        ; templateUrl: 'thermometer.html'
        ,link:function(scope){

            scope.$watch('value',function(newValue){
                console.log("--------------------------");
                console.log();
                if(newValue==75){
                    scope.color="blue";
                }
                if(newValue==76){
                    scope.color="green";
                }
            });
        }

    }
});

然后创建html文件:     &LT; div style = ...&gt;         ...     &LT; / DIV&GT;

答案 2 :(得分:0)

通过将变量放在<style>规则中,每次将指令放在页面上时,您都会重新定义css类 - 所以如果指令的第一个实例设置

.donation-meter .amount { background:red}

但下一个将其设置为

.donation-meter .amount { background:green}

然后最后一条css规则将覆盖之前的规则,因此适用于页面上的所有.donation-meter .amount元素。

您应该将大多数CSS提取到样式表中,而不是为指令的每个实例重新呈现它。对于需要变量样式规则的部分,请尽可能使用ng-class:

<div ng-class="{red: newValue < 75, green: newValue >74}">...</div>

或者直接在元素上设置变量样式而不是类规则:

<div style="background-color: {{color}}">

而不是

<style>.foo {background-color: {{color}}</style> <div class="foo"></div>