created: 20211105010816701 modified: 20211105021159297 tags: title: Custom pause/play button on video html{ cursor:pointer; } body{ margin:0; width:100vw; height:100vh; display:grid; place-content:center; } video { width: 100%; height: 100%; object-fit: cover; position:fixed; z-index:-1; } .play-button{ width: 100px; height: 100px; background-size: 8px; background: center / contain no-repeat url('data:image/svg+xml;utf8,'); } .play-button.pause{ background: center / contain no-repeat url('data:image/svg+xml;utf8,'); } .play-button:not(.pause){ opacity:0; transition: all .1s ease-out; } body:hover .play-button:not(.pause){ opacity:1; } Your browser does not support HTML5 video. """/>