我對這個琴的工作:https://jsfiddle.net/thatOneGuy/x2pxx92e/6/一些CSS樣式不工作的SVG
我有鼠標懸停並進行事件驗證碼:
d3.select('#circleSVG').on('mouseover', function(d) {
console.log('mouseover')
d3.select(this).classed('testCircle', true)
console.log(this)
}).on('mouseout', function(){
d3.select(this).classed('testCircle', false)
})
的testCircle
類看起來像這樣:
.testCircle{
fill: orange;
opacity:0.25;
}
但是,這個課程帶來的唯一風格是不透明。它不會改變填充。任何想法爲什麼?
@lamelemon傳說,一直在試圖弄明白了一段時間,日ank you – thatOneGuy
@lamelemon有沒有必要使用!重要的是,這是一個非常糟糕的做法 –