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.
<svg id="chart" width="600" height="500">
<text class="time" x="300" y="50" text-anchor="middle">6:00</text>
<text class="origin-text" x="90" y="75" text-anchor="end">MEL</text>
<text class="dest-text" x="510" y="75" text-anchor="start">SYD</text>
<circle class="origin-dot" r="5" cx="100" cy="75" />
<circle class="dest-dot" r="5" cx="500" cy="75" />
<line class="origin-dest-line" x1="110" y1="75" x2="490" y2="75" />
</svg>
svg {
border-radius: 3px;
border: 1px solid rgba(0,0,0,.1);
}
text {
dominant-baseline: middle;
font-family: "Open Sans", sans-serif;
fill: #333;
}
line {
stroke-linecap: round;
}
.time {
font-size: 20px;
}
.origin-dest-line {
stroke: #79B5A2;
stroke-width: 4;
}
.origin-text, .dest-text {
font-size: 14px;
}
.origin-dot, .dest-dot {
fill: #79B5A2;
}
.flight-dot {
stroke: #fff;
stroke-width: 2;
}
.flight-line {
stroke-width: 2;
}
.flight text {
font-size: 14px;
}
var data = [
{ departs: '06:00 am', arrives: '07:25 am', id: 'Jetstar 500' },
{ departs: '06:00 am', arrives: '07:25 am', id: 'Qantas 400' },
{ departs: '06:00 am', arrives: '07:25 am', id: 'Virgin 803' },
{ departs: '06:30 am', arrives: '07:55 am', id: 'Qantas 404' },
{ departs: '06:30 am', arrives: '07:55 am', id: 'Virgin 807' },
{ departs: '06:45 am', arrives: '08:10 am', id: 'Qantas 406' },
{ departs: '06:45 am', arrives: '08:10 am', id: 'Virgin 809' },
{ departs: '06:45 am', arrives: '08:15 am', id: 'Tigerair 206' },
{ departs: '07:00 am', arrives: '08:25 am', id: 'Qantas 408' },
{ departs: '07:00 am', arrives: '08:25 am', id: 'Virgin 811' },
{ departs: '07:15 am', arrives: '08:40 am', id: 'Qantas 410' },
{ departs: '07:15 am', arrives: '08:40 am', id: 'Virgin 813' },
{ departs: '07:30 am', arrives: '08:55 am', id: 'Qantas 412' },
{ departs: '07:30 am', arrives: '08:55 am', id: 'Virgin 815' },
{ departs: '07:35 am', arrives: '09:00 am', id: 'Jetstar 502' },
{ departs: '07:45 am', arrives: '09:10 am', id: 'Qantas 402' },
{ departs: '07:45 am', arrives: '09:10 am', id: 'Virgin 817' },
{ departs: '08:00 am', arrives: '09:25 am', id: 'Qantas 414' },
{ departs: '08:00 am', arrives: '09:25 am', id: 'Virgin 819' },
{ departs: '08:30 am', arrives: '09:55 am', id: 'Qantas 416' },
{ departs: '08:30 am', arrives: '09:55 am', id: 'Virgin 823' },
{ departs: '09:00 am', arrives: '10:25 am', id: 'Qantas 418' },
{ departs: '09:00 am', arrives: '10:25 am', id: 'Virgin 827' },
{ departs: '09:15 am', arrives: '10:40 am', id: 'Jetstar 506' },
{ departs: '09:30 am', arrives: '10:55 am', id: 'Qantas 420' },
{ departs: '10:00 am', arrives: '11:25 am', id: 'Qantas 422' },
{ departs: '10:00 am', arrives: '11:25 am', id: 'Virgin 833' },
{ departs: '10:10 am', arrives: '11:35 am', id: 'Tigerair 224' },
{ departs: '10:15 am', arrives: '11:40 am', id: 'Jetstar 508' },
{ departs: '10:40 am', arrives: '12:05 pm', id: 'Jetstar 510' },
{ departs: '11:00 am', arrives: '12:25 pm', id: 'Qantas 426' },
{ departs: '11:00 am', arrives: '12:25 pm', id: 'Virgin 837' },
{ departs: '11:10 am', arrives: '12:35 pm', id: 'Tigerair 228' },
{ departs: '11:30 am', arrives: '12:55 pm', id: 'Qantas 428' },
{ departs: '12:00 pm', arrives: '01:25 pm', id: 'Qantas 430' },
{ departs: '12:00 pm', arrives: '01:25 pm', id: 'Virgin 841' },
{ departs: '12:30 pm', arrives: '01:55 pm', id: 'Qantas 432' },
{ departs: '12:50 pm', arrives: '02:15 pm', id: 'Jetstar 512' },
{ departs: '01:00 pm', arrives: '02:25 pm', id: 'Qantas 434' },
{ departs: '01:00 pm', arrives: '02:25 pm', id: 'Virgin 845' },
{ departs: '01:50 pm', arrives: '03:15 pm', id: 'Tigerair 242' },
{ departs: '02:00 pm', arrives: '03:25 pm', id: 'Qantas 438' },
{ departs: '02:00 pm', arrives: '03:25 pm', id: 'Virgin 849' },
{ departs: '02:30 pm', arrives: '03:55 pm', id: 'Qantas 440' },
{ departs: '03:00 pm', arrives: '04:25 pm', id: 'Qantas 442' },
{ departs: '03:00 pm', arrives: '04:25 pm', id: 'Virgin 853' },
{ departs: '03:20 pm', arrives: '04:45 pm', id: 'Jetstar 514' },
{ departs: '03:30 pm', arrives: '04:55 pm', id: 'Qantas 444' },
{ departs: '03:30 pm', arrives: '04:55 pm', id: 'Tigerair 252' },
{ departs: '04:00 pm', arrives: '05:25 pm', id: 'Qantas 446' },
{ departs: '04:00 pm', arrives: '05:25 pm', id: 'Virgin 859' },
{ departs: '04:15 pm', arrives: '05:40 pm', id: 'Jetstar 518' },
{ departs: '04:30 pm', arrives: '05:55 pm', id: 'Qantas 450' },
{ departs: '04:30 pm', arrives: '05:55 pm', id: 'Virgin 863' },
{ departs: '04:45 pm', arrives: '06:10 pm', id: 'Tigerair 256' },
{ departs: '04:45 pm', arrives: '06:10 pm', id: 'Virgin 865' },
{ departs: '05:00 pm', arrives: '06:25 pm', id: 'Qantas 452' },
{ departs: '05:00 pm', arrives: '06:25 pm', id: 'Virgin 867' },
{ departs: '05:30 pm', arrives: '06:55 pm', id: 'Qantas 454' },
{ departs: '05:30 pm', arrives: '06:55 pm', id: 'Virgin 871' },
{ departs: '05:45 pm', arrives: '07:10 pm', id: 'Qantas 496' },
{ departs: '06:00 pm', arrives: '07:25 pm', id: 'Qantas 458' },
{ departs: '06:00 pm', arrives: '07:25 pm', id: 'Virgin 875' },
{ departs: '06:05 pm', arrives: '07:30 pm', id: 'Jetstar 520' },
{ departs: '06:25 pm', arrives: '07:50 pm', id: 'Tigerair 264' },
{ departs: '06:30 pm', arrives: '07:55 pm', id: 'Qantas 460' },
{ departs: '06:30 pm', arrives: '07:55 pm', id: 'Virgin 879' },
{ departs: '07:00 pm', arrives: '08:25 pm', id: 'Qantas 462' },
{ departs: '07:00 pm', arrives: '08:25 pm', id: 'Virgin 883' },
{ departs: '07:30 pm', arrives: '08:55 pm', id: 'Qantas 464' },
{ departs: '07:40 pm', arrives: '09:05 pm', id: 'Jetstar 522' },
{ departs: '08:00 pm', arrives: '09:25 pm', id: 'Qantas 490' },
{ departs: '08:00 pm', arrives: '09:25 pm', id: 'Virgin 891' },
{ departs: '08:45 pm', arrives: '10:10 pm', id: 'Jetstar 528' },
{ departs: '09:00 pm', arrives: '10:25 pm', id: 'Virgin 897' },
{ departs: '09:05 pm', arrives: '10:30 pm', id: 'Tigerair 282' }
];
data.forEach((d)=> {
d.departureDate = moment(d.departs, "hh-mm a").toDate();
d.arrivalDate = moment(d.arrives, "hh-mm a").toDate();
d.xScale = d3.time.scale()
.domain([d.departureDate, d.arrivalDate])
.range([100, 500])
});
var now = moment(data[0].departs, "hh:mm a");
var end = moment(data[data.length - 1].arrives, "hh:mm a");
var loop = ()=> {
var time = now.toDate();
var currentData = data.filter((d)=> {
return d.departureDate <= time && time <= d.arrivalDate
});
render(currentData, time);
if (now <= end) {
now = now.add(5, 'minutes');
setTimeout(loop, 500);
}
}
var yPoint = (d, i)=> 100 + i * 25;
var colorMap = {
'Jetstar': '#FF5716',
'Qantas': '#EE1C25',
'Virgin': '#CC0001',
'Tigerair': '#FBA61C',
};
var colorPoint = (d)=> {
var name = d.id.split(' ')[0];
return colorMap[name];
}
var render = (data, time)=> {
var inFiveMinutes = moment(time).add(5, 'minutes').toDate();
var i = d3.interpolate(time, inFiveMinutes);
d3.select('.time')
.transition()
.duration(500)
.ease('linear')
.tween("text", ()=> {
return function(t) {
this.textContent = moment(i(t)).format("hh:mm a");
};
});
var flight = d3.select('#chart')
.selectAll('g.flight')
.data(data, (d)=> d.id)
var newFlight = flight.enter()
.append("g")
.attr('class', 'flight')
.attr('opacity', 0)
newFlight.transition()
.duration(500)
.attr('opacity', 1)
newFlight.append("text")
.attr('class',"flight-id")
.attr('x', (d)=> d.xScale(time) + 10)
.attr('y', yPoint)
.text((d)=> d.id)
newFlight.append("line")
.attr('class',"flight-line")
.attr('x1', '100')
.attr('x2', (d)=> d.xScale(time))
.attr('y1', yPoint)
.attr('y2', yPoint)
.attr('stroke', colorPoint)
newFlight.append("circle")
.attr('class',"flight-dot")
.attr('r', "5")
.attr('cx', (d)=> d.xScale(time))
.attr('cy', yPoint)
.attr('fill', colorPoint)
flight.select('.flight-id')
.transition()
.duration(500)
.ease('linear')
.attr('x', (d)=> d.xScale(time) + 10)
.attr('y', yPoint)
flight.select('.flight-dot')
.transition()
.duration(500)
.ease('linear')
.attr('cx', (d)=> d.xScale(time))
.attr('cy', yPoint)
flight.select('.flight-line')
.transition()
.duration(500)
.ease('linear')
.attr('x2', (d)=> d.xScale(time))
.attr('y1', yPoint)
.attr('y2', yPoint)
flight.exit()
.transition()
.duration(500)
.attr('opacity', 0)
.remove()
}
loop();
Also see: Tab Triggers