-
Hi! I want to implement hover effect (same as in SoundCloud). I found Soundcloud-like player in Doc, but hover effect reached using the div and if you will open Browser console, you will see, that it's just rectrange div. I want to implement a hover div with the same form as waveform. Maybe someone already implement this? If not, then could you help me, how can I change the wave color from point A to point B only. Or how can I get the reference to canvas element (using React.js). Thank you in Advance. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 7 replies
-
This can be done with a div overlay with a filter: .overlay {
background: #756752;
mix-blend-mode: 'plus-lighter';
} You could extend the Hover plugin with this, it would be a cool addition. |
Beta Was this translation helpful? Give feedback.
-
I have a gradient background. And I couldn't make it like the example from soundcloud either. The suggested solutions don't work. |
Beta Was this translation helpful? Give feedback.
This can be done with a div overlay with a filter:
You could extend the Hover plugin with this, it would be a cool addition.