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 URL's 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 it's URL and the proper URL extention.
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 Skypack, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ES6 import
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="main"></div>
:root {
--main-background: steelblue;
--app-background: lightblue;
--session-background: rgb(66, 156, 33);
--break-background: rgb(156, 33, 33);
--button-background: orangered;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: var(--main-background, steelblue);
}
#main-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: absolute;
border-radius: 2rem;
margin-inline: auto;
top: 1rem;
left: 0;
right: 0;
width: 90vw;
padding: 1rem;
background: var(--app-background, lightblue);
z-index: 0;
}
#timer-label {
position: relative;
font-size: min(10vw, 8rem);
margin-block: 0.25rem;
text-align: center;
}
.session-text {
position: relative;
color: var(--session-background);
text-shadow: 10px 15px 15px var(--session-background);
}
.break-text {
position: relative;
color: var(--session-background);
text-shadow: 10px 15px 15px var(--break-background);
}
.break-text::before,
.break-text::after,
.session-text::before,
.session-text::after {
content: '';
display: block;
position: absolute;
height: 20%;
top: min(4.5vw, 3rem);
}
.session-text::before,
.break-text::before {
background: var(--app-background);
z-index: -1;
left: -1rem;
right: -1rem;
}
.session-text::after,
.break-text::after {
width: 80vw;
left: 50%;
transform: translateX(-50%);
z-index: -2;
border-radius: 50%;
}
.session-text::after {
background: var(--session-background);
}
.break-text::after {
background: var(--break-background);
}
.break-text {
color: var(--break-background);
}
#time-left {
font-size: min(18vw, 10rem);
width: fit-content;
padding-inline: 1rem;
text-align: center;
}
.session {
position: relative;
color: var(--seession-background, green);
border-radius: 25px;
box-shadow: inset 0 0 15px var(--session-background, green);
}
.session::before {
border-radius: 25px;
content: '';
position: absolute;
inset: 0;
background: var(--session-background, green);
opacity: 0.25;
}
.break {
position: relative;
color: var(--break-background, green);
border-radius: 25px;
box-shadow: inset 0 0 15px var(--break-background, red);
}
.break::before {
border-radius: 25px;
content: '';
position: absolute;
inset: 0;
background: var(--break-background, red);
opacity: 0.25;
}
#settings-container {
display: grid;
grid-template-columns: 1fr 2fr 2fr;
margin-top: 1rem;
justify-content: center;
}
#controls-container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 0.3rem;
margin-bottom: 1rem;
}
.settings-button {
width: min(8rem, 16vw);
height: min(4rem, 21vh);
background-color: var(--button-background);
}
.button {
opacity: 0.6;
font-size: min(4.0vw, 1.5rem);
font-weight: bold;
border: 2px solid;
border-radius: 15px;
margin-inline: 0.25em;
}
.button:hover {
opacity: 1;
transition: opacity ease-in 250ms;
}
.increment {
position: relative;
background-color: var(--session-background);
}
@keyframes pulse-out {
from {
inset: 0.8rem;
}
to {
inset: 0;
}
}
.increment::before {
content: '';
border-radius: 15px;
position: absolute;
inset: 0.8rem;
border: 1px solid;
}
.increment:hover::before {
animation: pulse-out 0.75s infinite;
}
.decrement {
position: relative;
background-color: var(--break-background);
}
@keyframes pulse-in {
from {
inset: 0;
}
to {
inset: 0.8rem;
}
}
.decrement::before {
content: '';
border-radius: 15px;
position: absolute;
inset: 0.8rem;
border: 1px solid;
}
.decrement:hover::before {
animation: pulse-in 0.75s infinite;
}
.settings-box {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
text-align: right;
margin-block-start: 0.375rem;
margin-inline: 1rem;
padding-block: 0.1rem;
}
#break-label,
#session-label {
font-size: min(5.5vw, 2rem);
opacity: 0.9;
color: var(--main-background);
font-weight: bold;
padding-block: 0.5rem;
}
#break-length,
#session-length {
font-size: min(8vw, 3rem);
width: max-content;
padding-inline: 1rem;
margin-block: 0.05em;
border: 1px solid;
text-align: center;
}
.tools-box {
text-align: left;
margin-block: 0.25rem;
padding: 0.1rem;
}
#break-increment,
#break-decrement,
#session-increment,
#session-decrement {
aspect-ratio: 1 / 1;
width: 2rem;
margin-inline: 0.25rem;
margin-block: 0.25rem;
}
@media (max-width: 1000px) {
#settings-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#controls-container {
flex-direction: row;
gap: 0;
margin-block: 0;
margin-inline: 0;
}
.settings-box {
height: 100%;
}
}
@media (min-width: 1000px) {
#settings-container {
grid-template-columns: 2fr 1fr 2fr;
}
.session-order {
order: 2;
}
#controls-container {
order: 1;
}
.break-order {
order 3;
}
}
@media (min-width: 600px) and (max-width: 1000px) {
.settings-box {
flex-direction: row;
justify-content: flex-end;
gap: 1rem;
}
#break-label,
#session-label {
width: min-content;
}
#break-length,
#session-length {
width: min(10rem, 100%);
}
.tools-box {
white-space: nowrap;
}
}
import React, { Component } from "https://cdn.skypack.dev/react";
import ReactDOM from "https://cdn.skypack.dev/react-dom";
import { Temporal } from 'https://cdn.skypack.dev/@js-temporal/polyfill';
//import react stuff and Temporal object that manages time and date
//create main stateful component
class TimerApp extends Component {
constructor(props) {
super(props);
this.state = {
currentCycle: "session", //state that contains info of the current cycle 'session' or 'break'. It controls elements that change depending on current cycle
sessionSettingsMins: Temporal.Duration.from({minutes: 25, seconds: 0}), //state that contains the duration of 'session'. They can be changed by incrementing or decrementing
breakSettingsMins: Temporal.Duration.from({minutes: 5, seconds: 0}),//state that contains the duration of 'break'. They can be changed by incrementing or decrementing
hasBegun: false, //state that contains information whether we have already started a session
timestamp: "", //state that contains information when the timer has started
ongoing: false, //controls whether the timer is currently running or not
currentSession: Temporal.Duration.from({minutes: 25, seconds: 0}), //state that contain actual remaining time in the current session
currentBreak: Temporal.Duration.from({minutes: 5, seconds: 0}), //state that contain actual remaining time in the current session
readyToChange: false
}
//binding those functions~
this.handleReset = this.handleReset.bind(this);
this.minutesToDuration = this.minutesToDuration.bind(this);
this.secondsToDuration = this.secondsToDuration.bind(this);
this.handleIncrement = this.handleIncrement.bind(this);
this.handleDecrement = this.handleDecrement.bind(this);
this.handleStart = this.handleStart.bind(this);
this.handleStop = this.handleStop.bind(this);
this.cycleSwitch = this.cycleSwitch.bind(this);
}
//handles reset button click. resets all options to initial value
handleReset() {
clearIntervals(); //clears all ongoing intervals
//clears the beeping if we hit reset during beeping
document.getElementById('beep').pause();
document.getElementById('beep').currentTime = 0;
//brings back all the state to it's starting values
this.setState(state => ({
currentCycle: "session",
sessionSettingsMins: Temporal.Duration.from({minutes: 25, seconds: 0}),
breakSettingsMins: Temporal.Duration.from({minutes: 5, seconds: 0}),
hasBegun: false,
timestamp: "",
ongoing: false,
currentSession: Temporal.Duration.from({minutes: 25, seconds: 0}),
currentBreak: Temporal.Duration.from({minutes: 5, seconds: 0}),
readyToChange: false
}));
}
//function that return string with amount of seconds that also contain an extra zero if the value is just one digid
secondsToDuration({seconds}) {
let convert = (x) => x < 10 ? '0' + x : `${x}`;
return convert(seconds)
}
//function that return string with amount of minutes that also contain an extra zero if the value is just one digid
minutesToDuration({minutes}) {
let convert = (x) => x < 10 ? '0' + x : `${x}`;
return convert(minutes)
}
//function that handles incrementing the settings timer for both cycle types. Cannot go higher than 60 mins
handleIncrement(event) {
if(!this.state.hasBegun) this.setState(state => {
let cycle = event.target.value + 'SettingsMins';
let currentCycle = 'current' + event.target.value[0].toUpperCase() + event.target.value.slice(1);
let newDuration = state[cycle].add(Temporal.Duration.from({minutes: 1}));
return state[cycle].minutes < 60 ? ({
[cycle]: newDuration,
[currentCycle]: newDuration
}) : 0
})
}
//function that handles decrementing the settings timer for both cycle types. Cannot go lower than 0
handleDecrement(event) {
if(!this.state.hasBegun) this.setState(state => {
let cycle = event.target.value + 'SettingsMins';
let currentCycle = 'current' + event.target.value[0].toUpperCase() + event.target.value.slice(1);
let newDuration = state[cycle].subtract(Temporal.Duration.from({minutes: 1}));
return state[cycle].minutes > 1 ? ({
[cycle]: newDuration,
[currentCycle]: newDuration
}) : 0
});
}
//handles start button click. if there is currently no session going, assign currentSession and currentBreak from the settings and mark that the session has begun. also resume the session with changing ongoing to true
handleStart() {
if(!this.state.hasBegun) {
this.setState(state => ({
hasBegun: true,
timestamp: Temporal.Now.plainTimeISO().round({smallestUnit: "seconds"}),
ongoing: true
}));
} else {
this.setState(state => ({
timestamp: Temporal.Now.plainTimeISO().round({smallestUnit: "seconds"}),
ongoing: true
}));
}
}
//pause the session with changing ongoing to pause and resetting the timestamp
handleStop() {
clearIntervals();
this.setState(state => ({
timestamp: "",
ongoing: false
}));
}
//function that switches the cycle between 'session' and 'break'
cycleSwitch() {
clearIntervals();
alarm();
let newCycle = this.state.currentCycle == 'session' ? 'break' : 'session';
this.setState(state => ({
currentCycle: newCycle,
timestamp: Temporal.Now.plainTimeISO().round({smallestUnit: "seconds"}),
readyToChange: false
}));
}
componentDidUpdate() {
//function that will adjust state within setInterval callback. depending on the cycle it will create new timestamp, reset the timer of the opposite cycle and create a green light to change the cycle. when the session/break minutes and seconds are less than 0 we get a green light. it has to be less than because of the timeouts seem to be inaccurate.
const setState = (timeSince, intervalID) => {
this.setState(state => {
if(this.state.currentCycle == 'session') {
return ({
timestamp: Temporal.Now.plainTimeISO().round({smallestUnit: "seconds"}),
currentSession: state.currentSession.subtract(timeSince),
currentBreak: state.breakSettingsMins,
readyToChange: (state.currentSession.minutes <= 0 &&
state.currentSession.seconds <= 0) ? true : false
})
} else if(this.state.currentCycle == 'break') {
return ({
timestamp: Temporal.Now.plainTimeISO().round({smallestUnit: "seconds"}),
currentSession: state.sessionSettingsMins,
currentBreak: state.currentBreak.subtract(timeSince),
readyToChange: (state.currentBreak.minutes <= 0 &&
state.currentBreak.seconds <= 0) ? true : false
})
}
})
};
console.log("actual timestamp: ", this.state.timestamp);
//when the ongoing is true, meaning the timer is marked to be running, take time stamp marking start of the timer and create an timeout of 1000ms to update the state with exact time to update the timer and new timestamp, therefore creating a loop of updating component
if(this.state.ongoing) {
const currentTimeStamp = this.state.timestamp;
setTimeout(function() {
let timeNow = Temporal.Now.plainTimeISO().round({smallestUnit: "seconds"});
let timeSince = timeNow.since(currentTimeStamp);
setState(timeSince);
},1000);
if(this.state.readyToChange) this.cycleSwitch();
}
}
render() {
//variable that contains name of the current ongoing cycle currentSession or currentBreak
let currentOngoingCycle = 'current' + this.state.currentCycle[0].toUpperCase() + this.state.currentCycle.slice(1);
//check actual components for info
return (
<div id="main-container">
<MainLabel cycle={this.state.currentCycle}/>
<MainTimer cycle={this.state.currentCycle} minutes={this.minutesToDuration(this.state[currentOngoingCycle])} seconds={this.secondsToDuration(this.state[currentOngoingCycle])} />
<div id="settings-container">
<Controls reset={this.handleReset} handleClick={this.state.ongoing ? this.handleStop : this.handleStart} startStop={this.state.ongoing ? 'Stop' : 'Start'}/>
<BreakSessionTools cycle='session' minutes={this.state.sessionSettingsMins.minutes} increment={this.handleIncrement} decrement={this.handleDecrement} />
<BreakSessionTools cycle='break' minutes={this.state.breakSettingsMins.minutes} increment={this.handleIncrement} decrement={this.handleDecrement} />
</div>
<audio id="beep" src='https://www.soundjay.com/buttons/sounds/beep-06.mp3'></audio>
</div>
)}
}
//MainLabel takes only current cycle name to display which session is currently ongoing and adjust the class
const MainLabel = (props) => <div id="timer-label" className={props.cycle + '-text'}>{props.cycle[0].toUpperCase() + props.cycle.slice(1)}</div>
//MainTimer also takes name of current session to adjust the class but also takes minutes and seconds to display them generated by the ~ToDuration functions. in case of MainTimer they change depending on the current ongoing session cycle.
const MainTimer = (props) => <div id="time-left" className={props.cycle}>{props.minutes + ':' + props.seconds}</div>
//Controls take onClick handler and startStop change dependign on the cycle that change depending on the current cycle. also takes onClick handler for reset button
const Controls = (props) => (
<div id="controls-container">
<button className='settings-button button' id="start_stop" onClick={props.handleClick} >{props.startStop}</button>
<button className='settings-button button' id="reset" onClick={props.reset}>Reset</button>
</div>
)
//BreakSessionTools take cycle name to determin settings as well as minutes for which cycle to display. It also takes event handlers for increment and decrement buttons
const BreakSessionTools = (props) => (
<div class={props.cycle + "-order settings-box"}>
<div id={props.cycle + '-label'}>{props.cycle[0].toUpperCase() + props.cycle.slice(1) + ' settings'}</div>
<div id={props.cycle + '-length'} className={props.cycle} >{props.minutes}</div>
<div className="tools-box">
<button id={props.cycle + '-increment'} className='button increment' value={props.cycle} onClick={props.increment} >+</button>
<button id={props.cycle + '-decrement'} className='button decrement' value={props.cycle} onClick={props.decrement} >-</button>
</div>
</div>
)
//clear all intervals that are going on
const clearIntervals = () => {
let dummyInterval = setInterval(() => {},1);
for(let i = 0; i <= dummyInterval; i++) {
clearInterval(i);
}
}
//beep 3 times
const alarm = () => {
const beep = document.getElementById('beep');
beep.loop = true;
beep.play();
let count = 0;
beep.addEventListener('timeupdate', function() {
if(this.currentTime == 0) {
count += 1;
}
if(count == 3) {
this.pause();
this.currentTime = 0;
}
})
}
ReactDOM.render(<TimerApp />, document.getElementById('main'));
Also see: Tab Triggers