0

我正在尝试创建自己的小部件,它看起来像一个 LED 我有一些 HTML/CSS 代码可以满足我的需要。这是一个片段

 options : 
    {
        onColor : "red",
        offColor : "green",
        size : "15px",
        checked : "true"
    },

 _create: function () 
    {
        var $elem = this.element;
        $elem.css ( { 
            "width": this.options.size , 
            "height" : this.options.size, 
            "background-color" : this.options.onColor,
            "-webkit-border-radius": "50%", 
            "-moz-border-radius": "50%",
            "border-radius": "50%"  } );
  }

我想要做的是创建一个刷新功能,可以根据检查值的状态在打开和关闭颜色之间切换颜色。任何想法我怎么能做到这一点?

谢谢你。

4

0 回答 0