Skip to content

Commit

Permalink
future
Browse files Browse the repository at this point in the history
  • Loading branch information
rachelandrew committed Nov 25, 2020
1 parent b1379f4 commit 6ab440d
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions time/future.html
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>

0 comments on commit 6ab440d

Please sign in to comment.