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.
<div id="app" />
@import url('https://fonts.googleapis.com/css?family=Droid+Sans+Mono');
$font-color: #FF0050;
$primary-color: #C1003D;
$secondary-color: #60001E;
$background-color: #440015;
body {
background-color: $background-color;
margin: 0;
padding: 0;
}
html {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
}
svg {
stroke: $primary-color;
fill: transparent;
stroke-width: 8px;
max-width: 100%;
max-height: 100%;
}
.thin {
stroke: $secondary-color;
fill: transparent;
stroke-width: 3px;
}
text {
font-family: 'Droid Sans Mono', monospace;
font-size: 20px;
fill: $font-color;
stroke: $font-color;
stroke-width: 1px;
}
const Sine = () => {
const [degree, setDegree] = React.useState(0)
// A reference is basically a state that you can change directly
// and that won't trigger rerendering of the component
const lastTimeRef = React.useRef(null);
const frameRef = React.useRef();
const animate = time => {
if (lastTimeRef.current != null) {
const delta = (time - lastTimeRef.current) * 0.03;
// Because of the unfortunate side effect of the effect's
// second parameter we cannot refer to degree as simple
// as you might would in an other situation. Luckily for
// us though the setter function can accept a function if
// the state is needed to calcualte the next value and
// that function will always have the latest value of the state
setDegree(previousDegree => (previousDegree + delta) % 360);
}
lastTimeRef.current = time;
frameRef.current = requestAnimationFrame(animate);
}
// This effect will run only once because an empty array is passed on
// as a second argument. That empty array has an unfortunate side-effect
// though. If we pass on an empty array then the effect will assume that
// everything is static and it's not worth being up to date with such
// things as the state changes. This behaviour is true for the animate
// function as well so if we are going to try to reference the value of
// degree in there then it will always give back the initial value.
React.useEffect(() => {
frameRef.current = requestAnimationFrame(animate);
return () => cancelAnimationFrame(frameRef.current);
}, []);
return <Draw degree={degree} />;
}
// Note: Math.sin and Math.cos accept a radian value and 360 degrees equal 2 * pi radians
// The sin value is in minus because coordinates in SVGs increase from top to bottom
const sin = value => -Math.sin(value/180*Math.PI)
const cos = value => Math.cos(value/180*Math.PI)
const Draw = ({ degree }) => (
<svg width='1020' height='240' viewBox='0 -120 1020 240'>
<text x='100'>
sin(
</text>
{/* This is the line that connects the two sides */}
<line
transform='translate(310 0)'
className='thin'
x1={cos(degree) * 100}
y1={sin(degree) * 100}
x2={degree + 250}
y2={sin(degree) * 100}
/>
{/* This is the left side block with the circle*/}
<g transform='translate(310 0)'>
<circle className='thin' cx='0' cy='0' r='100' />
{/* This is the arc showing the progress (M: move to, A: arc to)*/}
<path d={`
M 30 0
A 30 30 0 ${degree <= 180 ? 0 : 1} 0 ${cos(degree) * 30} ${sin(degree) * 30}
`} />
{/* These are the two sides of the angle */}
<line
className='thin'
x1='0'
y1='0'
x2='100'
y2='0'
/>
<line
className='thin'
x1='0'
y1='0'
x2={cos(degree) * 100}
y2={sin(degree) * 100}
/>
{/* This is the degree of the angle */}
<text
x={cos(degree) * 100 + 10}
y={sin(degree) * 100}
>
{Math.round(degree)}°
</text>
</g>
<text x='470'>
) =
</text>
{/* This is the right side block with the sine wave */}
<g transform='translate(560 0)'>
{/* This is the baseline */}
<line className='thin' x1='0' y1='0' x2='360' y2='0' />
{/* These are the full sine wave in the background and the in progress one*/}
<polyline className='thin'
points={Array.from(
{ length: 360 },
(v, d) => `${d} ${sin(d) * 100}`
)}
/>
<polyline
points={Array.from(
{ length: degree },
(v, d) => `${d} ${sin(d) * 100}`
)}
/>
{/* This is the value of the sine */}
<text x={degree + 10} y={sin(degree) * 100}>
{parseFloat(Math.sin(degree/180*Math.PI)).toFixed(4)}
</text>
</g>
</svg>
)
ReactDOM.render(<Sine />, document.getElementById('app'));
Also see: Tab Triggers