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.
<!--
Follow me on
Dribbble: https://dribbble.com/supahfunk
Twitter: https://twitter.com/supahfunk
Codepen: https://codepen.io/supah/
-->
<div class="app">
<h1>
<img src="http://www.supah.it/dribbble/020/runner.png" />Today's workout <small>09/03/2016</small>
</h1>
<div id="map"></div>
<div class="info">
<div class="info-box">
<img src="http://www.supah.it/dribbble/020/route.png" />
<mark><span>5.1</span> KM</mark>
<small>Total distance</small>
</div>
<div class="info-box">
<img src="http://www.supah.it/dribbble/020/time.png" />
<mark><span>25</span>'<span>34</span>"</mark>
<small>Spend time</small>
</div>
<div class="info-box">
<img src="http://www.supah.it/dribbble/020/heart.png" />
<mark><span>103</span> BPM</mark>
<small>Average pulse</small>
</div>
<div class="info-box">
<img src="http://www.supah.it/dribbble/020/average.png" />
<mark><span>5.4</span> KM/H</mark>
<small>Average distance</small>
</div>
</div>
</div>
<button class="reload">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Capa_1" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 92.33 92.33" style="enable-background:new 0 0 92.33 92.33;" xml:space="preserve">
<g>
<path d="M70.598,16.753c-1.722-1.24-4.113-0.852-5.349,0.866c-1.242,1.716-0.853,4.113,0.865,5.35 c13.613,9.818,18.021,27.857,10.482,42.89c-4.082,8.138-11.088,14.202-19.726,17.066c-8.636,2.871-17.877,2.2-26.013-1.879 c-8.134-4.083-14.197-11.088-17.066-19.722c-2.866-8.642-2.197-17.877,1.886-26.014c4.958-9.89,14.458-16.779,25.413-18.429 c0.074-0.008,0.137-0.036,0.211-0.053l0.157,7.571c0.021,0.839,0.542,1.585,1.321,1.889c0.782,0.305,1.672,0.11,2.25-0.496 l10.904-11.379c0.794-0.828,0.764-2.142-0.062-2.933L44.492,0.577c-0.606-0.582-1.499-0.739-2.267-0.399 c-0.251,0.108-0.476,0.269-0.662,0.462c-0.372,0.389-0.585,0.919-0.579,1.479l0.151,7.212c-0.385-0.063-0.78-0.087-1.188-0.027 c-13.418,2.021-25.052,10.46-31.125,22.571C-1.499,52.451,6.85,77.584,27.424,87.901c5.989,3.005,12.362,4.429,18.646,4.429 c15.306,0,30.065-8.439,37.382-23.028C92.688,50.884,87.284,28.782,70.598,16.753z" fill="#404853"/></svg> reload
</button>
/*--------------------
Body
--------------------*/
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
height: 100vh;
margin: 0;
background: radial-gradient(ellipse farthest-corner at center bottom, #69d2fb 0%, #20438E 100%);
color: #42474f;
font-family: 'Roboto', sans-serif;
}
/*--------------------
App
--------------------*/
.app {
position: relative;
top: 50%;
left: 50%;
width: 320px;
height: 568px;
transform: translate(-50%, -50%);
background: #fff;
padding: 2px 2px 30px;
border: 4px solid #fff;
border-radius: 10px;
box-shadow: 0 4px 30px rgba(0, 0, 0, .1);
h1 {
position: absolute;
z-index: 10;
top: 0;
left: 0;
width: 100%;
height: 44px;
font-size: 18px;
font-weight: 300;
padding: 10px 10px;
background: #f9f9f9;
box-shadow: 0 4px 30px rgba(0, 0, 0, .1);
img {
vertical-align: middle;
position: relative;
top: -4px;
margin-right: 10px;
}
small {
position: relative;
top: 6px;
float: right;
font-size: 14px;
color: #58A7E2;
}
}
#map {
position: absolute;
z-index: 1;
width: 100%;
height: 490px;
top: 0;
left: 0;
}
.info {
position: absolute;
z-index: 10;
bottom: 0;
left: -1px;
width: 101%;
height: 115px;
background: #fff;
box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.1);
overflow: hidden;
&-box {
position: relative;
background: #fff;
padding: 10px;
width: 50%;
height: 60px;
float: left;
border-bottom: 1px solid #ddd;
border-right: 1px solid #ddd;
img {
position: absolute;
left: 9px;
top: 12px;
width: 25px;
height: auto;
height: auto;
}
mark {
position: absolute;
left: 43px;
top: 13px;
font-size: 22px;
font-weight: 300;
padding: 0;
background: none;
color: #393e47;
}
small {
position: absolute;
left: 43px;
top: 38px;
display: block;
font-size: 10px;
text-transform: uppercase;
color: #959da6;
}
&:nth-child(2) img {
top: 10px;
}
&:nth-child(2n) {
border-right: none;
}
&:nth-child(n+3) {
border-bottom: none;
}
}
}
}
.reload {
position: absolute;
bottom: 15px;
right: 15px;
background: #fff;
border: none;
border-radius: 20px;
outline: none!important;
font-size: 11px;
line-height: 1.5;
padding: 8px 12px;
text-transform: uppercase;
z-index: 10;
cursor: pointer;
box-shadow: 0 6px 7px #244B94;
transition: all .1s cubic-bezier(.67,.13,.1,.81);
&:hover {
box-shadow: 0 4px 4px #244B94;
transform: translateY(1px);
}
&:active {
box-shadow: 0 1px 2px #244B94;
transform: translateY(2px);
}
svg {
vertical-align: middle;
position: relative;
top: -2px;
}
}
var gmap = document.getElementById('map');
var map;
var settings = {
home: {
latitude: 43.92025,
longitude: 12.90030
},
icon_url: '',
zoom: 16
}
var coords = new google.maps.LatLng(settings.home.latitude, settings.home.longitude);
var options = {
zoom: settings.zoom,
scrollwheel: false,
center: coords,
mapTypeId: google.maps.MapTypeId.ROADMAP,
mapTypeControl: true,
scaleControl: true,
streetViewControl: false,
zoomControlOptions: {
style: google.maps.ZoomControlStyle.DEFAULT
},
overviewMapControl: true,
styles: [{
"featureType": "water",
"elementType": "geometry",
"stylers": [{
"color": "#e9e9e9"
}, {
"lightness": 17
}]
}, {
"featureType": "landscape",
"elementType": "geometry",
"stylers": [{
"color": "#f5f5f5"
}, {
"lightness": 20
}]
}, {
"featureType": "road.highway",
"elementType": "geometry.fill",
"stylers": [{
"color": "#ffffff"
}, {
"lightness": 17
}]
}, {
"featureType": "road.highway",
"elementType": "geometry.stroke",
"stylers": [{
"color": "#ffffff"
}, {
"lightness": 29
}, {
"weight": 0.2
}]
}, {
"featureType": "road.arterial",
"elementType": "geometry",
"stylers": [{
"color": "#ffffff"
}, {
"lightness": 18
}]
}, {
"featureType": "road.local",
"elementType": "geometry",
"stylers": [{
"color": "#ffffff"
}, {
"lightness": 16
}]
}, {
"featureType": "poi",
"elementType": "geometry",
"stylers": [{
"color": "#f5f5f5"
}, {
"lightness": 21
}]
}, {
"featureType": "poi.park",
"elementType": "geometry",
"stylers": [{
"color": "#dedede"
}, {
"lightness": 21
}]
}, {
"elementType": "labels.text.stroke",
"stylers": [{
"visibility": "on"
}, {
"color": "#ffffff"
}, {
"lightness": 16
}]
}, {
"elementType": "labels.text.fill",
"stylers": [{
"saturation": 36
}, {
"color": "#333333"
}, {
"lightness": 40
}]
}, {
"elementType": "labels.icon",
"stylers": [{
"visibility": "off"
}]
}, {
"featureType": "transit",
"elementType": "geometry",
"stylers": [{
"color": "#f2f2f2"
}, {
"lightness": 19
}]
}, {
"featureType": "administrative",
"elementType": "geometry.fill",
"stylers": [{
"color": "#fefefe"
}, {
"lightness": 20
}]
}, {
"featureType": "administrative",
"elementType": "geometry.stroke",
"stylers": [{
"color": "#fefefe"
}, {
"lightness": 17
}, {
"weight": 1.2
}]
}]
};
map = new google.maps.Map(gmap, options);
var end = new google.maps.Marker({
position: new google.maps.LatLng(43.92127, 12.89816),
map: map,
icon: {
url: 'http://www.supah.it/dribbble/020/end.png?v=3',
origin: new google.maps.Point(0, 0)
},
draggable: false
});
var start = new google.maps.Marker({
position: new google.maps.LatLng(43.92000, 12.89788),
map: map,
icon: {
url: 'http://www.supah.it/dribbble/020/start.png?v=3',
origin: new google.maps.Point(0, 0)
},
draggable: false
});
var info = new google.maps.InfoWindow({
content: settings.text
});
var runningCoords = [{
lat: 43.92003,
lng: 12.89786
}, {
lat: 43.91992,
lng: 12.89796
}, {
lat: 43.91937,
lng: 12.89887
}, {
lat: 43.91929,
lng: 12.89890
}, {
lat: 43.91928,
lng: 12.89904
}, {
lat: 43.91906,
lng: 12.89927
}, {
lat: 43.91883,
lng: 12.89973
}, {
lat: 43.91785,
lng: 12.90166
}, {
lat: 43.91868,
lng: 12.90242
}, {
lat: 43.91875,
lng: 12.90252
}, {
lat: 43.91878,
lng: 12.90262
}, {
lat: 43.91886,
lng: 12.90261
}, {
lat: 43.91959,
lng: 12.90254
}, {
lat: 43.92024,
lng: 12.90243
}, {
lat: 43.92114,
lng: 12.90215
}, {
lat: 43.92230,
lng: 12.90177
}, {
lat: 43.92244,
lng: 12.90163
}, {
lat: 43.92251,
lng: 12.90137
}, {
lat: 43.92236,
lng: 12.90056
}, {
lat: 43.92205,
lng: 12.89938
}, {
lat: 43.92133,
lng: 12.89819
}];
/* No Animation */
/*
var runPath = new google.maps.Polyline({
path: runningCoords,
geodesic: true,
strokeColor: '#58a7e2',
strokeOpacity: 1.0,
strokeWeight: 3
});
runPath.setMap(map);
*/
/* Animation */
var i = 0;
function animPath() {
if (i > runningCoords.lenght) {
return false;
}
dept_lat = runningCoords[i].lat;
dept_lng = runningCoords[i].lng;
arr_lat = runningCoords[i + 1].lat;
arr_lng = runningCoords[i + 1].lng;
var departure = new google.maps.LatLng(dept_lat, dept_lng); //Set to whatever lat/lng you need for your departure location
var arrival = new google.maps.LatLng(arr_lat, arr_lng); //Set to whatever lat/lng you need for your arrival location
var line = new google.maps.Polyline({
path: [departure, departure],
strokeColor: "#58a7e2",
strokeOpacity: 1,
strokeWeight: 3,
geodesic: true, //set to false if you want straight line instead of arc
map: map,
});
var step = 0;
var numSteps = 25; //Change this to set animation resolution
var timePerStep = 5; //Change this to alter animation speed
var interval = setInterval(function() {
step += 1;
if (step > numSteps) {
clearInterval(interval);
i++;
animPath();
} else {
var are_we_there_yet = google.maps.geometry.spherical.interpolate(departure, arrival, step / numSteps);
line.setPath([departure, are_we_there_yet]);
}
}, timePerStep);
}
google.maps.event.addListenerOnce(map, 'idle', function() {
setTimeout(init, 300);
});
function init(){
animPath();
/* Number animation */
$('.info-box mark span').each(function() {
$(this).prop('Counter', 0).animate({
Counter: parseFloat($(this).text()).toFixed(1)
}, {
duration: 3000,
easing: 'easeInOutQuart',
step: function(now) {
$(this).text(Math.round(now * 10) / 10);
}
});
});
}
$('.reload').click(function(){
location.href = location.href;
});
Also see: Tab Triggers