fabric.js strokeWidth bug ?
fabric.js를 사용하다가 new fabric.Path, new fabric.Line, new fabric.Polygon 들을 new fabric.Group으로 묶어서 사용할 경우, 초기 설정(strokeWidth: 3, stroke: 'yellow') -> 마우스 오버 이벤트(strokeWidth: 6, stroke: 'red') -> 마우스 아웃 이벤트(strokeWidth: 3, stroke: 'yellow') 로 작동시 문제: 일부 픽셀에서 red 잔상이 남는 현상이 발생한다. (화면을 확대하면, 더 많은 픽셀에서 발생, 크롬브라우저) 해결: 초기 설정(strokeWidth: 6, stroke: 'yellow') -> 캔바스에 add 후 수정(strokeWidth: 3, stroke: 'yel..
2018. 8. 31.