-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbgcolorcycleex.01.html
More file actions
106 lines (106 loc) · 4.02 KB
/
Copy pathbgcolorcycleex.01.html
File metadata and controls
106 lines (106 loc) · 4.02 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html>
<head>
<title>bgcolorcycleex.00.html</title>
<link rel="stylesheet" href="New51Colors.00.css"/>
<style>
h1 {
background-color:white;
opacity:0.65;
font-family:sans-serif;
padding:10px;
margin-left:1em;
margin-right:auto;
margin-top:10px;
margin-bottom:10px;
}
p.paragraph {
display:block;
background-color:white;
opacity:0.65;
font-family:sans-serif;
font-size:14pt;
padding:10px;
margin-left:4em;
margin-right:auto;
margin-top:8px;
margin-bottom:8px;
border:1px red solid;
}
a {
color:black;
font-family:monospace;
font-size:10pt;
}
a:hover {background-color:rgba(255,255,0,0.75);}
div.swatches {
font-family:sans-serif;
font-size:14pt;
padding:10px;
margin-left:4em;
margin-right:auto;
margin-top:8px;
margin-bottom:8px;
}
div.swatch {
display:inline;
width:100px;
height:35px;
float:left;
padding:1px;
margin:1px;
text-align:center;
font-family:monospace;
font-size:15px;
border:black solid 3px;
}
p#demo {
border:3px rgb(92,92,92);
margin-top: 0.5em;
margin-right: 1.0em;
margin-bottom: 0.5em;
margin-left: 1.0em;
padding:0.5em;
text-align:center;
font-family:monospace;
font-size:120%;
font-weight; 200%;
}
</style>
</head>
<body>
<h1>Page Background Color-cycling Example</h1>
<p class="paragraph">
The CSS file that contain the animation rules:
<a href="corrected-bg-ani.00.css">corrected-bg-ani.00.css</a>
<a href="New51Colors.00.css">New51Colors.00.css</a>
</p>
<p class="paragraph">
Here is link to the Sheet where I did the calculations that appear in
the <code style="font-weight:bold;">@keyframes</code> list:<br/>
<code><<a target="_blank"
href="https://docs.google.com/spreadsheets/d/e/2PACX-1vRld-9XjLTvrrk2UwmxEEN9B06USf5Ro1xombLziMJIp5KE-a871MT-IC4qhDlSOVcjHGQ5Zx98TPan/pubhtml?gid=1654580719&single=true">
https://docs.google.com/spreadsheets/d/e/2PACX-1vRld-9XjLTvrrk2UwmxEEN9B06USf5Ro1xombLziMJIp5KE-a871MT-IC4qhDlSOVcjHGQ5Zx98TPan/pubhtml?gid=1654580719&single=true
</a>></code>
</p>
<p id="demo"> </p>
<!--
TODO: This sections needs to be re-coded in JavaScript or PHP
to iterate through the color list and create a swatch element
for each color.
------------------------------------------------------------------
<h1>color swatches</h1>
<div class="swatches" >
<div class='swatch' style='background-color:#fbfbef;'>#fbfbef</div>
<div class='swatch' style='background-color:#f0f8e6;'>#f0f8e6</div>
<div class='swatch' style='background-color:#e0edf4;'>#e0edf4</div>
<div class='swatch' style='background-color:#e9e5f3;'>#e9e5f3</div>
<div class='swatch' style='background-color:#feeef5;'>#feeef5</div>
<div class='swatch' style='background-color:#ffe8de;'>#ffe8de</div>
<div class='swatch' style='background-color:#ffe7d0;'>#ffe7d0</div>
<div class='swatch' style='background-color:#ffeede;'>#ffeede</div>
<div class='swatch' style='background-color:#fff5ec;'>#fff5ec</div>
</div>
-->
</body>
</html>