generated from codrops/CodropsTemplate
-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
executable file
·50 lines (50 loc) · 1.63 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Velvette View Transitions | Codrops</title>
<meta name="description" content="Easy CSS view-transitions with Velvette" />
<meta name="author" content="Noam Rosenthal for Codrops" />
<link rel="shortcut icon" href="favicon.ico">
<link rel="stylesheet" type="text/css" href="css/base.css" />
<link rel="stylesheet" type="text/css" href="css/app.css" />
<script>document.documentElement.className="js";</script>
</head>
<body>
<main>
<header class="frame">
<h1 class="frame__title">Velvette Easy View Transitions</h1>
<a class="frame__back" href="https://tympanus.net/codrops/?p=75261">Read the tutorial</a>
<a class="frame__sub" href="https://tympanus.net/codrops/collective/">Subscribe</a>
</header>
<div class="content">
<section id="list">
<form id="sorter">
Sort by:
<label><input type="radio" name="sort" value="id" checked><span>ID</span></label>
<label><input type="radio" name="sort" value="title"><span>Title</span></label>
<label><input type="radio" name="sort" value="release_date"><span>Release Date</span></label>
</form>
<ul>
</ul>
</section>
<section id="details">
<a href="?list">
<img id="hero">
<h4 class="title title--single"></h4>
</a>
</section>
</div>
</main>
<script src="./index.js"></script>
<template id="movie-item">
<li class="item">
<a>
<img class="thumb">
<span class="title"></span>
</a>
</li>
</template>
</body>
</html>