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.
<link href='https://fonts.googleapis.com/css?family=Francois+One' rel='stylesheet' type='text/css'>
<div class="header"><h1>SERIOUS BUSINESSppl's STOCKSBOCKS</h1></div>
<div class="content">
<div class="forms-wrapper">
<form>
<input type="text" class="textfield">
<button class="submit">get ur quote</button>
</form>
<div class="buyform"></div>
</div>
<div class="error"></div>
<div class="thankyou"></div>
<div class="quotewrap"><div class="quote"></div></div>
</div>
<div class="buytable"></div>
body {
font-family: 'Francois One', sans-serif;
box-sizing: border-box;
text-align: center;
background-image: url('http://cdn2.business2community.com/wp-content/uploads/2013/03/WallStreetSignGeneric20120305.jpg');
}
.quotewrap {
display: block;
}
.quote {
display: inline-block;
margin: 20px 0 80px;
background-color: rgba(0, 0, 0, 0.85);
color: white;
font-size: 40px;
padding: 20px;
border-radius: 20px;
}
.quote:empty {
display:none;
}
.quote > company, .quote > price, .quote > high, .quote > low {
display: block;
margin: 10px;
}
.quote > high, .quote > low {
display: inline-block;
}
.header {
display: block;
}
h1 {
display: inline-block;
font-size: 100px;
background-color: rgba(0, 0, 0, 0.85);
color: white;
padding: 5px 30px;
border-radius: 10px;
}
form>input {
margin-bottom: 40px;
}
form>input, button {
font-size: 60px;
padding: 10px;
}
form>input:focus, button:focus {
outline:none;
}
button {
font-family: 'Francois One', sans-serif;
background-color: rgba(0, 128, 0, 0.85);
color: white;
border: none;
border-radius: 25px;
padding: 10px 30px;
cursor: pointer;
}
.submit {
margin-bottom: 40px;
}
.error {
transition: opacity 1000ms;
background-color: red;
display: inline-block;
padding: 0 50px;
font-size: 80px;
margin: 40px 0;
}
.error:empty {
display: none;
}
.error>p {
margin: 0;
position: relative;
top: 10px;
}
company {
font-size: 80px;
}
price {
font-size: 80px;
}
high {
color: red;
}
low {
color: blue;
}
table {
margin: 20px auto 90px;
width: 80%;
font-size: 30px;
text-align: left;
background-color: white;
border: 3px solid black;
padding: 15px;
}
tfoot {
text-align: right;
}
thead {
text-decoration: underline;
}
.buyform > form > button {
background-color: rgba(0, 0, 128, 0.85);
}
.buyform input.textfield, .buyform .submit{
margin-bottom: 0;
}
.buyform p {
background-color: rgba(0, 0, 128, 0.85);
color: white;
border-radius: 6px;
display: inline-block;
font-size: 18px;
padding: 2px 5px;
}
.forms-wrapper {
position: relative;
}
form button {
margin-left: 10px;
}
.content {
text-align: center;
}
button.delete-button {
height: 30px;
width: 120px;
background-color: red;
font-size: 22px;
text-align: center;
padding: 0;
vertical-align: middle;
}
.delete-cell {
text-align: center;
}
.hide {
visibility: hidden;
}
.thankyou {
transition: opacity 1000ms;
background-color: green;
display: inline-block;
padding: 0 50px;
font-size: 50px;
margin: 40px 0;
border-radius: 4px;
}
.thankyou:empty {
display: none;
}
.thankyou>p {
margin: 0;
}
var API_URL = "http://dev.markitondemand.com/Api/v2/Quote/jsonp?";
var FIREBASE_URL = "https://stocksbocks.firebaseio.com/stocksbocks.json"
var $SUBMITBUTTON = $(".submit");
var $TEXTFIELD = $(".textfield");
var $BUYFORM = $(".buyform");
var $QUOTE = $(".quote");
var $ERROR = $(".error");
var $THANKYOU = $(".thankyou");
var $BUYTABLE = $(".buytable");
var $TOTAL_CELL;
var CURRENT_STOCK_OBJ;
var running_total = 0;
$BUYTABLE.on('click', '.delete-button', function() {
deleteFromFirebase($(this).closest('tr').attr('data_id'));
$(this).closest('tr').fadeOut(500, function() { $(this).remove(); });
/*$(this).closest('tr').remove();*/
running_total -= $(this).closest('tr').attr('total_cost');
updateTotal();
})
initialLoad();
function deleteFromFirebase(id) {
var deleteUrl = FIREBASE_URL.slice(0, -5) + '/' + id + '.json';
$.ajax({url: deleteUrl, type: 'DELETE'})
}
function makeError() {
var docFragment = document.createDocumentFragment(); // contains all gathered nodes
var p = document.createElement('P');
docFragment.appendChild(p);
var text = document.createTextNode("(ノಠ益ಠ)ノ WAT");
p.appendChild(text);
return docFragment;
}
function makeThankyou() {
var docFragment = document.createDocumentFragment(); // contains all gathered nodes
var p = document.createElement('P');
docFragment.appendChild(p);
var text = document.createTextNode("|* ̄∇ ̄| thanku ♪");
p.appendChild(text);
return docFragment;
}
function addQuote(data) {
CURRENT_STOCK_OBJ = data;
$QUOTE.empty();
$ERROR.empty();
if (!(data.LastPrice)) {
$ERROR.append(makeError());
fadeIn(".error");
$BUYFORM.empty();
return false;
}
$QUOTE.append(makeQuote(data));
if (!($(".buyform input").length)) {
appendBuyForm();
}
}
function makeQuote(data) {
var obj = new Date(data.Timestamp);
var date = obj.toDateString();
var docFragment = document.createDocumentFragment(); // contains all gathered nodes
var time = document.createElement('TIME');
docFragment.appendChild(time);
var text = document.createTextNode(date);
time.appendChild(text);
var company = document.createElement('COMPANY');
docFragment.appendChild(company);
var text_0 = document.createTextNode(data.Name);
company.appendChild(text_0);
var price = document.createElement('PRICE');
docFragment.appendChild(price);
var text_1 = document.createTextNode("$" + data.LastPrice);
price.appendChild(text_1);
var high = document.createElement('HIGH');
docFragment.appendChild(high);
var text_2 = document.createTextNode("High: $" + data.High);
high.appendChild(text_2);
var low = document.createElement('LOW');
docFragment.appendChild(low);
var text_3 = document.createTextNode("Low: $" + data.Low);
low.appendChild(text_3);
return docFragment;
}
$SUBMITBUTTON.click(function(event) {
event.preventDefault();
var symbol = $TEXTFIELD.val();
var request_url = API_URL + "symbol=" + symbol;
$.get(request_url, addQuote, 'jsonp');
})
function appendBuyForm() {
$BUYFORM.append(makeBuyForm());
var $buy_button = $(".buyform > form > button");
$buy_button.click(function(event) {
event.preventDefault();
var regex = /^([1-9]|[1-9][0-9]+)$$/
var $QUANTITYINPUT = $('.buyform form input.textfield');
if (!($QUANTITYINPUT.val().match(regex))) {
if (!$ERROR.html()) {
$THANKYOU.empty();
$ERROR.append(makeError());
fadeIn(".error");
}
return false;
}
$ERROR.empty();
if (!$THANKYOU.html()) {
$THANKYOU.append(makeThankyou());
fadeIn(".thankyou");
setTimeout(function() {
$THANKYOU.children().fadeOut(1600, function() {
$(this).remove();
$(this).css('display', '');
})
}, 3000)
}
writeToFirebase();
// writeToTable function call moved to the success parameter (as a function) of the $.post call
// so that it won't attempt to write to the table until the data object is successfully loaded in;
// if that change hadn't been made, it'd attempt to write to the table before it had the necessary
// data.
})
}
function fadeIn(selector) {
var element = document.querySelector(selector);
element.style.opacity = 0;
window.getComputedStyle(element).opacity;
element.style.opacity = 1;
}
function writeToFirebase() {
var writeObj = {};
var buy_number = $(".buyform input.textfield").val();
writeObj.Buy_number = buy_number;
writeObj.Symbol = CURRENT_STOCK_OBJ.Symbol;
writeObj.Name = CURRENT_STOCK_OBJ.Name;
writeObj.LastPrice = CURRENT_STOCK_OBJ.LastPrice.toFixed(2);
$.post(FIREBASE_URL, JSON.stringify(writeObj), function(response) {
//res = {name: "ouhrfgouih2093458thushdf"}
CURRENT_STOCK_OBJ.data_id = response.name;
insertToTable();
});
}
function initialLoad() {
$.get(FIREBASE_URL, function(db_data) {
// below: not working from an array; is a hash. key gives you the exact data_id string.
db_data && Object.keys(db_data).forEach(function(key) {
insertToTable(db_data[key], key);
});
});
}
function insertToTable(db_data, id) {
if (!($("table").length)) {
$(".buytable").append(makeTableHeading());
$BUYTABLE = $(".buytable table");
$BUYTABLE.append(makeTableFooter());
$TOTAL_CELL = $(".total_cost_cell");
}
$(makeBuyRow(db_data, id)).insertBefore($("table tfoot"));
updateTotal();
}
function updateTotal() {
$TOTAL_CELL.html("$" + running_total.toFixed(2));
}
function makeBuyRow(db_data, id) {
var buy_number = ((db_data && db_data.Buy_number) || document.querySelector(".buyform input.textfield").value);
var LastPrice_use_this = ((db_data && db_data.LastPrice) || CURRENT_STOCK_OBJ.LastPrice);
var total_cost_this_time = buy_number * LastPrice_use_this;
running_total += total_cost_this_time;
var docFragment = document.createDocumentFragment(); // contains all gathered nodes
var tr = document.createElement('TR');
tr.setAttribute("data_id", (id || CURRENT_STOCK_OBJ.data_id.toString()));
tr.setAttribute("total_cost", total_cost_this_time);
docFragment.appendChild(tr);
var td = document.createElement('TD');
tr.appendChild(td);
var text = document.createTextNode(((db_data && db_data.Symbol) || CURRENT_STOCK_OBJ.Symbol));
td.appendChild(text);
var td_0 = document.createElement('TD');
tr.appendChild(td_0);
var text_0 = document.createTextNode(((db_data && db_data.Name) || CURRENT_STOCK_OBJ.Name));
td_0.appendChild(text_0);
var td_1 = document.createElement('TD');
tr.appendChild(td_1);
var text_1 = document.createTextNode(commafy(buy_number));
td_1.appendChild(text_1);
var td_2 = document.createElement('TD');
tr.appendChild(td_2);
var text_2 = document.createTextNode("$" + parseFloat(LastPrice_use_this).toFixed(2));
td_2.appendChild(text_2);
var td_3 = document.createElement('TD');
tr.appendChild(td_3);
var text_3 = document.createTextNode("$" + commafy((LastPrice_use_this * parseInt(buy_number)).toFixed(2)));
td_3.appendChild(text_3);
var td_4 = document.createElement('TD');
td_4.classList.add("delete-cell");
tr.appendChild(td_4);
var button_3 = document.createElement('button');
button_3.classList.add("delete-button");
var button_text = document.createTextNode("Delete");
button_3.appendChild(button_text);
td_4.appendChild(button_3);
return docFragment;
}
function makeTableFooter() {
var docFragment = document.createDocumentFragment(); // contains all gathered nodes
var tfoot = document.createElement('TFOOT');
docFragment.appendChild(tfoot);
var blank_tr = document.createElement('TR');
tfoot.appendChild(blank_tr);
var blank_td = document.createElement('TD');
blank_td.classList.add("hide");
blank_tr.appendChild(blank_td);
var dummy_text = document.createTextNode("nothing to see here");
blank_td.appendChild(dummy_text);
var tr = document.createElement('TR');
tfoot.appendChild(tr);
var tdplaceholder = document.createElement('TD');
tr.appendChild(tdplaceholder);
var tdplaceholder2 = document.createElement('TD');
tr.appendChild(tdplaceholder2);
var tdplaceholder3 = document.createElement('TD');
tr.appendChild(tdplaceholder3);
var td2 = document.createElement('TD');
var text = document.createTextNode("Total cost:\xA0\xA0");
td2.appendChild(text);
tr.appendChild(td2);
var td = document.createElement('TD');
td.classList.add("total_cost_cell");
tr.appendChild(td);
return docFragment;
}
function makeTableHeading() {
var docFragment = document.createDocumentFragment(); // contains all gathered nodes
var table = document.createElement('TABLE');
docFragment.appendChild(table);
var tbody = document.createElement('THEAD');
table.appendChild(tbody);
var tr = document.createElement('TR');
tbody.appendChild(tr);
var th = document.createElement('TH');
tr.appendChild(th);
var text = document.createTextNode("Symbol");
th.appendChild(text);
var th_0 = document.createElement('TH');
tr.appendChild(th_0);
var text_0 = document.createTextNode("Stock");
th_0.appendChild(text_0);
var th_1 = document.createElement('TH');
tr.appendChild(th_1);
var text_1 = document.createTextNode("Amount");
th_1.appendChild(text_1);
var th_2 = document.createElement('TH');
tr.appendChild(th_2);
var text_2 = document.createTextNode("Price per");
th_2.appendChild(text_2);
var th_3 = document.createElement('TH');
tr.appendChild(th_3);
var text_3 = document.createTextNode("Total price");
th_3.appendChild(text_3);
var th_4 = document.createElement("TH");
tr.appendChild(th_3);
return docFragment;
}
function makeBuyForm() {
var docFragment = document.createDocumentFragment(); // contains all gathered nodes
var form = document.createElement('FORM');
docFragment.appendChild(form);
var input = document.createElement('INPUT');
input.setAttribute("type", "text");
input.setAttribute("class", "textfield");
input.setAttribute("placeholder", "How many?");
form.appendChild(input);
var button = document.createElement('BUTTON');
button.setAttribute("class", "submit");
form.appendChild(button);
var text = document.createTextNode("Purchase");
button.appendChild(text);
p_element = document.createElement('P');
docFragment.appendChild(p_element);
var p_text = document.createTextNode("note that 'purchase' refers to shares of the currently displayed stock quote");
p_element.appendChild(p_text);
return docFragment;
}
function commafy(num) {
var decimal = num.indexOf(".");
if (decimal !== -1) {
var num_arr = num.split("").slice(0,decimal).reverse();
var decimal_part = num.split("").slice(decimal).join("");
} else {
var num_arr = num.split("").reverse();
}
for (var i = 1; i < num_arr.length; i++) {
if (i % 3 === 0) {
num_arr[i] += ",";
}
}
new_num = num_arr.reverse().join("");
if (decimal_part) {
new_num += decimal_part;
}
return new_num;
}
Also see: Tab Triggers