OSX의 동적 너비 HTML5 텍스트 트랙
1934 단어 csssubtitleshtml5videottml
::-webkit-media-text-track-display {
// prevent subtitles from taking up 100% width
// while remaining centered
width: auto !important;
left: 50% !important;
transform: translateX(-50%);
// prevent unexpected line breaks, since the
// above styling will otherwise force 50% width
// on the subtitle element
white-space: pre;
}
이 코드는 부제목 요소를 가운데로 배치하여 동적 폭을 유지하고 의외의 줄 바꿈을 방지합니다.복구 프로그램은 본 컴퓨터의 자막을 유지하기 때문에 운영체제 수준의 접근 가능한 옵션을 적용할 수 있습니다.
Reference
이 문제에 관하여(OSX의 동적 너비 HTML5 텍스트 트랙), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/video/html5-subtitles-with-dynamic-width-on-osx-1da1텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)