forked from mdn/css-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b1379f4
commit 6ab440d
Showing
1 changed file
with
53 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title>The :future pseudo-class</title> | ||
<link rel="stylesheet" href="styles.css" /> | ||
<style> | ||
* { | ||
box-sizing: border-box; | ||
} | ||
|
||
video { | ||
max-width: 300px; | ||
} | ||
</style> | ||
|
||
<style class="editable"> | ||
|
||
:past(p, span) { | ||
background-color: green; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<section class="preview"> | ||
<video controls preload="metadata"> | ||
<source src="video.mp4" type="video/mp4" /> | ||
<source src="video.webm" type="video/webm" /> | ||
<track label="English" kind="subtitles" srclang="en" src="subtitles.vtt" default> | ||
</video> | ||
</section> | ||
|
||
<textarea class="playable playable-css" style="height: 200px;"> | ||
:future(p, span) { | ||
background-color: green; | ||
} | ||
</textarea> | ||
|
||
<textarea class="playable playable-html" style="height: 150px;"> | ||
<video controls preload="metadata"> | ||
<source src="video.mp4" type="video/mp4" /> | ||
<source src="video.webm" type="video/webm" /> | ||
<track label="English" kind="subtitles" srclang="en" src="subtitles.vtt" default> | ||
</video> | ||
</textarea> | ||
|
||
<div class="playable-buttons"> | ||
<input id="reset" type="button" value="Reset" /> | ||
</div> | ||
</body> | ||
<script src="../playable.js"></script> | ||
</html> |