-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from camalot/topic/fix-playback
- added example for custom css - added a default video frame - added a container to support the video frame - note: you may have to reset the browser sources cache in OBS/SLOBS
- Loading branch information
Showing
5 changed files
with
91 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#video-container .video-box { | ||
/* This is the container that holds the video-border-box and the video elements */ | ||
} | ||
|
||
#video-container .video-box .video-border-box { | ||
/* This container sits directly on top of the video and is sized the same as the video */ | ||
|
||
/* set the background image url */ | ||
/*background-image: url('https://i.imgur.com/lIl9knQ.png');*/ | ||
} | ||
|
||
#video-container .video-box video { | ||
/* This is the video container */ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters