Overlay Play button over video

前端 未结 3 686
没有蜡笔的小新
没有蜡笔的小新 2020-12-14 10:40

I currently have a script that plays and pauses a video onclick. What I would like to do is overlay a play button over the video at the start and when it is paused, and for

3条回答
  •  攒了一身酷
    2020-12-14 11:20

    I think I will only need to explain this.

    when .video is clicked and the video is paused ->
    .video{visibility: hidden;}
    when .video is clicked and the video is running ->
    .video{visibility: visible;}

    If you want more code, please comment

提交回复
热议问题