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.
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<div id="input_20160628">
<label>抽出數量: <input type="number" name="number" value="10" /></label>
<label><input type="checkbox" name="repeatable" /> 允許重複資料 </label>
<div><textarea></textarea></div>
<div class="div-button">
<button type="button" class="default">插入預設資料</button>
<button type="button" class="draw">抽籤</button>
</div>
</div>
<div id="result_20160628"></div>
<div style="clear:both"></div>
#input_20160628 {
float:left;
width: 30%;
margin-right: 2em;
}
#input_20160628 label {
display: block;
margin-top: 0.5em;
}
#input_20160628 div {
margin-top: 0.5em;
text-align: center;
}
#input_20160628 textarea {
width: 100%;
height: 20em;
}
$(function () {
$("#input_20160628 button.draw").click(function () {
var _lines = $.trim($("#input_20160628 textarea").val()).split("\n");
var _repeatable = ($('#input_20160628 [name="repeatable"]').length === 1);
var _number = parseInt($('#input_20160628 [name="number"]').val());
var _result = $("#result_20160628").empty();
if (isNaN(_number)) {
//alert("抽出數量必須為數字");
_result.html("抽出數量必須為數字");
return;
}
if (_lines.length === 1 && _lines[0] === "") {
//alert("抽出數量必須為數字");
_result.html("必須輸入資料");
return;
}
var _list = [];
for (var _i = 0; _i < _lines.length; _i++) {
var _line = $.trim(_lines[_i]);
if (_repeatable === true) {
_list.push(_line);
}
else if ($.inArray(_line, _list) === -1) {
_list.push(_line);
}
}
if (_number > _list.length) {
_number = _list.length;
}
// 抽出n位
var _getRandomInt = function(min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min;
}
var _result_index = [];
_result.append('<div>抽籤結果(共'+_number+'位):</div>');
for (var _r = 0; _r < _number; _r++) {
var _random_int = _getRandomInt(0, _list.length-1);
if ($.inArray(_random_int, _result_index) === -1) {
_result_index.push(_random_int);
_result.append('<div>' + _list[_random_int] + '</div>');
}
else {
_r--;
}
}
});
$("#input_20160628 button.default").click(function () {
$("#input_20160628 textarea").val('張彥智\n林家豪\n袁怡孜\n張文星\n劉吉蕙\n賴又玲\n陳冠琪\n陳映惠\n黃倍宣\n李禎東\n謝任枝\n魏筱婷\n張玉男\n倪俊賢\n林浩辛\n鄭茂慈\n謝婷婷\n劉憲胤\n許智亨\n陳雅雯\n李姿郁\n黃涵伶\n褚勝傑\n荀曼成\n林智凱\n蔡綠君\n蔡嘉芳\n吳琇杰\n張哲嘉\n侯亞珊\n吳侑勳\n錢佐韻\n蕭懿宏\n謝宜婷\n楊怡萱\n吳初齊\n彭佩穎\n程博鈞\n應思婷\n錢淳州\n張雨齊\n張秀龍\n王欣怡\n劉君芳\n林聖辰\n林俊穎\n江裕仁\n蔡偉哲\n張俊豪\n胡天良\n戴子婷\n朱淑媛\n梅智翔\n魏俊杰\n王柔瑤\n吳佳純\n謝玉梅\n陳佳俊\n黃建吉\n陳逸書\n姚佑花\n許瑩昇\n陳美喜\n陳瑜辛\n王靜芳\n黃玉凡\n朱明輝\n唐元木\n倪駿銘\n陳方順\n王皓中\n黃俊真\n劉宗達\n黃偉平\n吳阿人\n黃雅麟\n崔威廷\n盧兆珊\n陳邦峰\n黃珮坤\n王威任\n李又瑋\n劉宣秀\n芮淑娟\n滑劭燦\n葉佳欣\n鐘哲榮\n陳柏成\n張家豪\n林信宏\n林堯木\n翁君豪\n賁軒為\n黃士陽\n林京林\n郭呈愛\n張艾財\n張靜宜\n葉郁翔');
});
});
Also see: Tab Triggers