如何在 videojs v5 中隐藏当前时间工具提示?

How to hide the current time tooltip in videojs v5?

我想在 videojs v5 中隐藏当前时间工具提示。可以使用 .video-js .vjs-progress-control .vjs-play-progress:after 在 css 中识别它。但是,隐藏它也会隐藏进度条完成的部分。

有没有办法只隐藏当前时间工具提示?

添加此 class 以仅禁用当前时间工具提示:

.video-js .vjs-progress-control:hover .vjs-play-progress:after {
    display:none;
}

请注意添加的 :hover,它仅隐藏工具提示。

这对我有用(我试过 videojs 5.9)

/* hide time display on progress bar on the mouse position */
.video-js .vjs-progress-control:hover .vjs-mouse-display,
/* hide time display on progress bar on the current play position */
.video-js .vjs-progress-holder .vjs-play-progress {
   display: none; 
}