HTML preprocessors can make writing HTML more powerful or convenient. For instance, Markdown is designed to be easier to write and read for text documents and you could write a loop in Pug.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. So you don't have access to higher-up elements like the <html>
tag. If you want to add classes there that can affect the whole document, this is the place to do it.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. If you need things in the <head>
of the document, put that code here.
The resource you are linking to is using the 'http' protocol, which may not work when the browser is using https.
CSS preprocessors help make authoring CSS easier. All of them offer things like variables and mixins to provide convenient abstractions.
It's a common practice to apply CSS to a page that styles elements such that they are consistent across all browsers. We offer two of the most popular choices: normalize.css and a reset. Or, choose Neither and nothing will be applied.
To get the best cross-browser support, it is a common practice to apply vendor prefixes to CSS properties and values that require them to work. For instance -webkit-
or -moz-
.
We offer two popular choices: Autoprefixer (which processes your CSS server-side) and -prefix-free (which applies prefixes via a script, client-side).
Any URLs added here will be added as <link>
s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.
You can apply CSS to your Pen from any stylesheet on the web. Just put a URL to it here and we'll apply it, in the order you have them, before the CSS in the Pen itself.
You can also link to another Pen here (use the .css
URL Extension) and we'll pull the CSS from that Pen and include it. If it's using a matching preprocessor, use the appropriate URL Extension and we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
JavaScript preprocessors can help make authoring JavaScript easier and more convenient.
Babel includes JSX processing.
Any URL's added here will be added as <script>
s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
Search for and use JavaScript packages from npm here. By selecting a package, an import
statement will be added to the top of the JavaScript editor for this package.
Using packages here is powered by esm.sh, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ESM usage.
All packages are different, so refer to their docs for how they work.
If you're using React / ReactDOM, make sure to turn on Babel for the JSX processing.
If active, Pens will autosave every 30 seconds after being saved once.
If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.
If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.
Visit your global Editor Settings.
doctype html
html(lang="en")
head
title Duck hunt css!
link(href='./styles.css', rel='stylesheet')
body
div#stage
div#dogIntro
- var n = 0
while n < 10
- n++
input(type='checkbox' id='d' + n)
- var i = 0
while i < 3
- i++
input(type='checkbox' id='bc' + n + '-' + i)
div#dogLaugh
- var n = 0
while n < 10
- n++
div
span
span
div#shootingArea
- var n = 0
while n < 10
- n++
div
div
- var i = 0
while i < 3
- i++
label(for='bc' + n + '-' + i)
div
label(for='d' + n)
span
div#bullets.console
div
- var n = 0
while n < 10
- n++
div
span
span
span
span SHOT
div#hits.console
span HIT
div
- var n = 0
while n < 10
- n++
span
div#points.console
div.pts1
div.pts2
div.pts3
div.pts4
div.pts5
div.pts6
div.pts7
div.pts8
div.pts9
div.pts10
span 000000
span 000100
span 000200
span 000300
span 000400
span 000500
span 000600
span 000700
span 000800
span 000900
span 001000
span SCORE
@keyframes dogMove {
from {left:0px;}
to {left:450px;}
}
@keyframes dogWalk {
0% { background-position:0px 0px; }
3% { background-position:-120px 0px; }
6% { background-position:-240px 0px; }
9% { background-position:-360px 0px; }
12% { background-position:0px 0px; }
15% { background-position:-120px 0px; }
18% { background-position:-240px 0px; }
21% { background-position:-360px 0px; }
24% { background-position:0px 0px; }
27% { background-position:-120px 0px; }
30% { background-position:-240px 0px; }
33% { background-position:-360px 0px; }
36% { background-position:0px 0px; }
39% { background-position:-120px 0px; }
42% { background-position:-240px 0px; }
45% { background-position:-360px 0px; }
48% { background-position:0px 0px; }
51% { background-position:-120px 0px; }
54% { background-position:-240px 0px; }
57% { background-position:-360px 0px; }
60% { background-position:0px 0px; }
63% { background-position:-120px 0px; }
66% { background-position:-240px 0px; }
69% { background-position:-360px 0px; } /* Walk */
72% { background-position:-480px 0px; } /* Snif */
75% { background-position:-360px 0px; }
78% { background-position:-480px 0px; }
81% { background-position:-360px 0px; }
90% { background-position:-0px -110px; } /* Find */
93% {background-position:-120px -110px;} /* Jump */
96% {background-position:-240px -110px;}
100% { background-position: 1000px 1000px; }/*Hide*/
}
@keyframes dogLaugh {
0% { background-position:-360px -110px; }
50% { background-position:-480px -110px; }
100% { background-position:-360px -110px; }
}
@keyframes dogShow {
0% { top:560px; }
25% { top: 480px; }
75% { top: 480px; }
100% { top:560px; }
}
@keyframes lvlStart {
from {left:5000px;}
to {left:0px;}
}
@keyframes lvlEnd {
from {left:0px;}
to {left:5000px;}
}
@keyframes duckWing {
0% { background-position:0px -220px; }
33% { background-position:-85px -220px; }
66% { background-position:-170px -220px; }
100% { background-position:-170px -220px; }
}
@keyframes duck1 {
from {left:-100px; top: 0px;}
to {left:1280px; top: 400px}
}
@keyframes duck2 {
0% {left:-100px; top: 300px;}
50% { left: 200px; top: 0px; }
100% {left:1280px; top: 100px;}
}
@keyframes duck3 {
0% {left:-100px; top: 600px;}
50% { left: 600px; top: 0px; }
100% {left:1280px; top: 600px;}
}
@keyframes duck4 {
0% {left:-100px; top: 100px;}
50% { left: 800px; top: 500px; }
100% {left:1280px; top: 0px;}
}
@keyframes duck5 {
0% {left:-100px; top: 600px;}
50% { left: 600px; top: 0px; }
100% {left:1280px; top: 600px;}
}
@keyframes duck6 {
0% {left:-100px; top: 0px;}
30% { left: 800px; top: 150px; }
60% { left: 200px; top: 0px; }
100% {left:1280px; top: 600px;}
}
@keyframes duck7 {
0% {left:-100px; top: 300px;}
30% { left: 100px; top: 10px; }
60% { left: 600px; top: 600px; }
100% {left:1280px; top: 0px;}
}
@keyframes duck8 {
0% {left:-100px; top: 100px;}
30% { left: 750px; top: 500px; }
60% { left: 600px; top: 600px; }
100% {left:1280px; top: 0px;}
}
@keyframes duck9 {
0% {left:-100px; top: 300px;}
20% { left: 300px; top: 10px; }
40% { left: 400px; top: 600px; }
60% { left: 900px; top: 200px; }
80% { left: 1100px; top: 500px; }
100% {left:1280px; top: 0px;}
}
@keyframes duck10 {
0% {left:-100px; top: 300px;}
10% { left: 300px; top: 300px; }
20% { left: 900px; top: 600px; }
30% { left: 0px; top: 200px; }
40% { left: 1100px; top: 500px; }
50% { left: 600px; top: 10px; }
60% { left: 400px; top: 600px; }
70% { left: 900px; top: 200px; }
80% { left: 400px; top: 500px; }
90% { left: 1100px; top: 200px; }
100% {left:1280px; top: 8px;}
}
@keyframes duckFall {
from { top:0px; }
to { top: 769px; }
}
#stage {
background: #897200 url('https://raw.githubusercontent.com/vaielab/DuckHuntCss/master/stage.png') no-repeat left top;
width:1280px;
height:769px;
position:relative;
overflow:hidden;
& > input {
display:none;
}
}
#shootingArea {
width:1280px;
height:550px;
overflow:hidden;
& > div {
position:absolute;
width:1280px;
height:550px;
left:5000px;
overflow:hidden;
& > div {
position:relative;
width:100%;
height:100%;
& > label {
position:absolute;
top:0;
left:0;
height:550px;
width:1280px;
}
}
}
}
#shootingArea > div > div > div > label, #shootingArea > div > div > div > span {
background: url('https://raw.githubusercontent.com/vaielab/DuckHuntCss/master/sprite.png') no-repeat;
height:76px;
display:block;
width:70px;
position:relative;
background-position:0px -220px;
animation: duckWing 200ms infinite step-end alternate;
}
#shootingArea > div > div > div > span {
display:none;
}
.console {
height:56px;
background-color:#000;
border: 1px solid #7FCE16;
position:absolute;
bottom:10px;
border-radius: 5px;
display:relative;
overflow:hidden;
}
#bullets {
width: 78px;
left: 305px;
& > div {
position:relative;
margin-left:9px;
margin-top:5px;
& > div {
width: 78px;
height: 56px;
position:absolute;
left:5000px;
top:0;
}
}
div span {
background: #000 url('https://raw.githubusercontent.com/vaielab/DuckHuntCss/master/sprite.png') no-repeat left top;
display:block;
height:20px;
width:20px;
float:left;
background-position: 0px -557px;
}
& > span {
color: #0099FF;
position:relative;
top:25px;
left:7px;
font-weight:bold;
letter-spacing:3px;
}
}
#hits {
width:313px;
left: 405px;
& > span {
color: #33CC33;
letter-spacing:5px;
font-size:28px;
margin-left:5px;
vertical-align:top;
}
& > div {
display:inline-block;
width:230px;
height:45px;
& > span {
background: #000 url('https://raw.githubusercontent.com/vaielab/DuckHuntCss/master/sprite.png') no-repeat left top;
display:block;
height:20px;
width:20px;
float:left;
background-position: -50px -557px;
margin-top:10px;
margin-right:3px;
}
}
}
#points {
width: 142px;
left:740px;
div {
position:absolute;
background-color:#000;
color:#fff;
width:10000px;
span {
display:block;
float:left;
width:142px;
font-size:25px;
letter-spacing:3px;
text-align:center;
font-family:"Times New Roman";
}
}
& > span {
position:relative;
top:25px;
left:22px;
color:#fff;
font-size:25px;
letter-spacing:3px;
text-align:center;
font-family:"Times New Roman";
}
}
#dogIntro {
position:absolute;
bottom: 120px;
z-index:1;
background: url('https://raw.githubusercontent.com/vaielab/DuckHuntCss/master/sprite.png') no-repeat;
width: 120px;
height: 100px;
}
#dogLaugh {
width:1280px;
height:570px;
overflow:hidden;
position:absolute;
top:0;
left:0;
& > div {
position:absolute;
top:560px;
left:560px;
& > span {
width: 150px;
height: 100px;
}
& > span:nth-child(1) {
display:block;
background: url('https://raw.githubusercontent.com/vaielab/DuckHuntCss/master/sprite.png') no-repeat;
animation: dogLaugh 200ms infinite steps(1) alternate;
}
& > span:nth-child(2) {
display:none;
background: url('https://raw.githubusercontent.com/vaielab/DuckHuntCss/master/sprite.png') no-repeat;
background-position:-600px -0px;
}
}
}
@for $i from 1 through 10 {
#bc#{$i}-1:checked ~ #shootingArea > div:nth-child(#{$i}) > div > label:nth-child(1),
#bc#{$i}-1:checked ~ #shootingArea > div:nth-child(#{$i}) > div > div > label,
#bc#{$i}-1:checked ~ #bullets div > div:nth-child(#{$i}) > span:nth-child(3) { display:none; }
#bc#{$i}-1:checked ~ #shootingArea > div:nth-child(#{$i}) > div > div > span { display: block; }
#bc#{$i}-2:checked ~ #shootingArea > div:nth-child(#{$i}) > div > label:nth-child(2),
#bc#{$i}-2:checked ~ #bullets div > div:nth-child(#{$i}) > span:nth-child(2) { display:none; }
#bc#{$i}-3:checked ~ #shootingArea > div:nth-child(#{$i}) > div > label:nth-child(3),
#bc#{$i}-3:checked ~ #bullets div > div:nth-child(#{$i}) > span:nth-child(1) { display:none; }
#shootingArea > div:nth-child(#{$i}) > div > div {
position:absolute;
left:-100px;
top:0;
width:70px;
height:76px;
}
#d#{$i}:checked ~ #points .pts#{$i} {
left: -142px;
}
#d#{$i}:checked ~ #shootingArea > div:nth-child(#{$i}) label {
display:none;
}
#d#{$i}:checked ~ #shootingArea > div:nth-child(#{$i}) > div > div > span {
animation: duckFall 500ms linear forwards;
background-position:-65px -460px;
display:block;
}
#d#{$i}:checked ~ #shootingArea > div:nth-child(#{$i}) > div > div {
animation-play-state:paused;
}
#d#{$i}:checked ~ #dogLaugh > div:nth-child(#{$i}) > span:nth-child(1) {
display:none;
}
#d#{$i}:checked ~ #dogLaugh > div:nth-child(#{$i}) > span:nth-child(2) {
display:block;
}
#d#{$i}:checked ~ #hits > div > span:nth-child(#{$i}) {
background-position: -25px -557px;
}
}
#dogIntro {
animation: dogMove 2.8s linear forwards, dogWalk 4s step-start 1 forwards;
}
$timer: 5;
@for $i from 1 through 10 {
#shootingArea > div:nth-child(#{$i}),
#bullets > div > div:nth-child(#{$i}) {
animation: lvlStart 1ms steps(1) #{$timer}s forwards, lvlEnd 1ms steps(1) #{$timer + 9}s forwards;
}
#shootingArea > div:nth-child(#{$i}) > div > div {
animation: duck#{$i} 5s linear #{$timer}s forwards;
}
#dogLaugh > div:nth-child(#{$i}) {
animation: dogShow 4s #{10 + (($i - 1) * 9)}s;
}
$timer: $timer + 9;
}
Also see: Tab Triggers