2016-01-09 81 views

回答

2

這似乎不可能在頁面級style is="custom-style",只適用於聚合物元素中聲明int style標籤的CSS變量。 也customStyle參見http://polymer.github.io/polymer/

元素樣式性質可通過在元件上在customStyle設定鍵 - 值對(類似於設置風格),然後調用updateStyles直接修改()。

「的元素的樣式屬性...」

1

這是可能的,就像這樣:

Polymer({ 
    is: 'my-el', 

    attached: function() {   
     console.log(this.getComputedStyleValue('--my-color')); 
    } 
}); 

注意我用attached回調,而不是ready

相關問題