我只想保留seekbar的拖动事件,而不希望用户单击它来调整视频时间表。
我尝试这样做:
<!-- named-query name="GetProcessInstanceIdByCorrelation">
<query>
select
key.processInstanceId
from
CorrelationKeyInfo key left join key.properties props
where
size(key.properties) = cast(:elem_count as integer) and
props.value in :properties
group by key.id,key.processInstanceId
having count(key.id) = :elem_count
</query>
</named-query-->
<named-query name="GetProcessInstanceIdByCorrelation">
<query>
select
key.processInstanceId
from
CorrelationKeyInfo key
where
key.name = :ckey
</query>
</named-query>
但这都没有帮助。
请帮助我。我已经尽力了。
答案 0 :(得分:0)
仅使用CSS,将这3行放在html中似乎可以解决此问题:
<style>
.video-js .vjs-progress-holder .vjs-play-progress { display: none; }
</style>
答案 1 :(得分:0)
myPlayer.controlBar.progressControl.disable();
这对我有用。