캡션 단추 caption-button
이 단추는 닫힌 캡션 표시를 켜거나 끕니다. caption 매개 변수를 지정하지 않으면 표시되지 않습니다.
CSS를 사용하여 이 단추를 포함하는 컨트롤 막대에 따라 크기를 조정하고, 스킨을 지정하고, 위치를 지정할 수 있습니다.
이 단추의 모양은 다음 CSS 클래스 선택기로 제어합니다.
.s7smartcropvideoviewer .s7closedcaptionbutton
캡션 단추의 CSS 속성
NOTE
이 단추는
state
및 selected
특성 선택기를 모두 지원합니다. 이 선택기는 다른 단추 상태에 다른 스킨을 적용하는 데 사용할 수 있습니다. 특히 selected='true'
은(는) 캡션이 표시되는 상태에 해당하며, selected='false'
은(는) 캡션이 숨겨지는 경우에 사용됩니다.단추 도구 설명을 현지화할 수 있습니다. 자세한 내용은 사용자 인터페이스 요소의 지역화를 참조하십시오.
예 section-e8caea0a303c425a8a637c2a47c06355
28 x 28픽셀이 되는 자막 단추를 설정하려면 다음을 수행합니다. 컨트롤 막대의 위쪽 가장자리에서 4픽셀, 오른쪽 가장자리에서 68픽셀이 위치한다. 마지막으로, 을 선택하거나 선택하지 않았을 때 4개의 서로 다른 단추 상태 각각에 대해 다른 이미지를 표시합니다.
.s7smartcropvideoviewer .s7closedcaptionbutton {
position:absolute;
top:4px;
right:68px;
width:28px;
height:28px;
}
.s7smartcropvideoviewer .s7closedcaptionbutton[selected='true'][state='up'] {
background-image:url(images/v2/ClosedCaptionButton_up.png);
}
.s7smartcropvideoviewer .s7closedcaptionbutton[selected='true'][state='over'] {
background-image:url(images/v2/ClosedCaptionButton_over.png);
}
.s7smartcropvideoviewer .s7closedcaptionbutton[selected='true'][state='down'] {
background-image:url(images/v2/ClosedCaptionButton_down.png);
}
.s7smartcropvideoviewer .s7closedcaptionbutton[selected='true'][state='disabled'] {
background-image:url(images/v2/ClosedCaptionButton_disabled.png);
}
.s7smartcropvideoviewer .s7closedcaptionbutton[selected='false'][state='up'] {
background-image:url(images/v2/ClosedCaptionButton_disabled.png);
}
.s7smartcropvideoviewer .s7closedcaptionbutton[selected='false'][state='over'] {
background-image:url(images/v2/ClosedCaptionButton_over.png);
}
.s7smartcropvideoviewer .s7closedcaptionbutton[selected='false'][state='down'] {
background-image:url(images/v2/ClosedCaptionButton_down.png);
}
.s7smartcropvideoviewer .s7closedcaptionbutton[selected='false'][state='disabled'] {
background-image:url(images/v2/ClosedCaptionButton_disabled.png);
}
recommendation-more-help
b7426f53-aad9-4c00-83fc-664f30f681e8