Toggle visibility property of div

后端 未结 6 1105
遥遥无期
遥遥无期 2020-11-29 06:53

I have an HTML 5 video in a div. I then have a custom play button - that works fine.
And I have the video\'s visibility set to hidden on load and visible when the play b

6条回答
  •  清歌不尽
    2020-11-29 07:41

    To clean this up a little bit and maintain a single line of code (like you would with a toggle()), you can use a ternary operator so your code winds up looking like this (also using jQuery):

    $('#video-over').css('visibility', $('#video-over').css('visibility') == 'hidden' ? 'visible' : 'hidden');
    

提交回复
热议问题