Open mderrick opened 8 years ago
Sorry to re-opening this bug. There is still a bug with volume control even with the latest version of the react ("react-html5video": "2.2.0", "react-dom": "15.6.1", "react": "15.5.3") in IE11/Edge Windows 7.
The cause of this issue is -webkit-appearance: slider-vertical;
in input[type="range"]
which does not work as expected in IE11/Edge ( it is still horizontal instead of vertical). So if we change it to something like this transform: rotate(-90deg) translateY(-20px) translateX(17px); height: 4px; width: 40px;
for IE11/Edge it would work as expected.
There is a known issue with the
onChange
event on range inputs: https://github.com/facebook/react/issues/3096.This is preventing the volume and seek from working in IE.
Consider an alternative solution.