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.
<header>
<h2>PubNub & React.js Demo</h2>
<h1>Collaborative Stickies</h1>
</header>
<section id="container" >
</section>
* {
box-sizing: border-box;
}
html, input {
font-family: "Segoe UI Web Light", "Segoe UI Light", "Segoe UI Web Regular", "Segoe UI", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}
html {
-ms-text-size-adjust: none;
}
html, body {
padding: 0;
margin: 0;
height: 100%;
}
body {
background: url(http://subtlepatterns2015.subtlepatterns.netdna-cdn.com/patterns/asanoha-400px.png) repeat 0 0;
/* the pattern is created by Olga Libby (subtlepatterns.com). CC BY-SA 3.0
*/
}
a {
color: #f18;
}
header {
margin-bottom: 1em;
padding: .5em 1em;
background-color: rgba(255, 255, 255, 0.5);
}
h1, h2, h3 {
margin: 0;
font-weight: normal;
}
h1 {
font-size: 2rem;
text-transform: lowercase;
}
h2 {
font-size: 1rem;
font: #333;
text-transform: uppercase;
}
footer {
border-top: gray 1px solid;
background-color: #ebebeb;
color: gray;
font-size: .75em;
padding: .5em;
text-align: right;
position: absolute;
bottom: 0;
left: 0;
right: 0;
}
.main {
min-height: 100%;
position: relative;
}
.demo {
padding-bottom: 2em;
}
.stickie-note {
background: #FDFDAA;
position: relative;
display: block;
height: 200px;
width: 200px;
padding: 8px;
margin: 0 auto 2em;
box-shadow: 2px 3px 6px rgba(0,0,0,.3), inset 0 0 24px rgba(0, 0, 0, .2);
}
.stickie-note.writable {
box-shadow:
1px 1px 0 rgba(0, 0, 0, 0.15),
2px 2px 0 rgba(255, 255, 255, 0.4),
3px 3px 0 rgba(0, 0, 0, 0.2),
4px 4px 0 rgba(255, 255, 255, 0.4),
5px 5px 0 rgba(0, 0, 0, 0.225),
6px 6px 0 rgba(255, 255, 255, 0.4),
7px 7px 0 rgba(0, 0, 0, 0.25),
9px 15px 15px rgba(0,0,0,.4), inset 0 0 24px rgba(0, 0, 0, .2);
}
.stickie-note:not(.writable):before, .stickie-note:not(.writable):after {
position: absolute;
width: 40%;
height: 10px;
content: ' ';
left: 6px;
bottom: 6px;
background: transparent;
-webkit-transform: skew(-10deg) rotate(-10deg);
-moz-transform: skew(-10deg) rotate(-10deg);
transform: skew(-10deg) rotate(-10deg);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
z-index: -1;
}
.stickie-note:not(.writable):after {
left: auto;
right: 6px;
-webkit-transform: skew(10deg) rotate(10deg);
-moz-transform: skew(10deg) rotate(10deg);
transform: skew(10deg) rotate(10deg);
}
textarea {
font-size: 1.2em;
border-width: 0;
width: 190px;
height: 150px;
padding: 6px;
background-color: transparent;
}
.stickie-note p {
padding: 0;
overflow-wrap: break-word;
word-wrap: break-word;
-ms-word-break: break-all;
word-break: break-word;
-ms-hyphens: auto;
-moz-hyphens: auto;
-webkit-hyphens: auto;
hyphens: auto;
overflow: hidden;
text-overflow: ellipsis;
}
.stickie-note p.note {
font-family: "Give You Glory", sans-serif;
font-size: 1.4em;
line-height: 1.5em;
height: 120px;
}
.stickie-note p.username {
font-size: 0.8em;
text-align: right;
}
.stickie-note.writable:hover, .stickie-note.writable:active,
.stickie-note.writable textarea:hover, .stickie-note.writable textarea:active {
cursor: url('data:image/x-icon;base64,AAACAAEAICAAAAEAAQCoEAAAFgAAACgAAAAgAAAAQAAAAAEAIAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgYDGhoGA70aBgO9GgYDNwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoGAxoaBgO9fnl5/4yHh/8aBgO9GgYDNwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaBgMaGgYDvX55ef9XTEr/v7+//62oqP8aBgO9GgYDNwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgYDGhoGA71+eXn/V0xK/7+/v/9pXlz/6enp/8jEw/8aBgO9GgYDNwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoGAxoaBgO9fnl5/6urq/+/v7//aV5c/+np6f+rpKL//////87Jyf8aBgO9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaBgMaGgYDvX55ef+rq6v/v7+//9XV1f/p6en/q6Si//////+vqKf/6Obl/xoGA70AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgYDGhoGA71+eXn/q6ur/7+/v//V1dX/6enp//j4+P//////r6in/+jm5f97b27/GgYDvQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoGAxoaBgO9fnl5/6urq/+/v7//1dXV/+np6f/4+Pj////////////o5uX/e29u/87Jyf8aBgO9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaBgMaGgYDvX55ef+rq6v/v7+//9XV1f/p6en/+Pj4/////////////////3tvbv/Oycn/6Obl/xoGA70AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgYDGhoGA71+eXn/q6ur/7+/v//V1dX/6enp//j4+P////////////////97b27/zsnJ///////o5uX/GgYDvQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoGAxoaBgO9fnl5/6urq/+/v7//1dXV/+np6f/4+Pj/////////////////e29u/87Jyf//////6Obl/xoGA70aBgM3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaBgMaGgYDvX55ef+rq6v/v7+//9XV1f/p6en/+Pj4/////////////////3tvbv/Oycn//////+jm5f8aBgO9GgYDNwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgYDGhoGA71+eXn/q6ur/7+/v//V1dX/6enp//j4+P////////////////97b27/zsnJ///////o5uX/GgYDvRoGAzcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoGAxoaBgO9fnl5/1dMSv+/v7//1dXV/+np6f/4+Pj/////////////////e29u/87Jyf//////6Obl/xoGA70aBgM3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaBgMaGgYDvX55ef+rq6v/v7+//2leXP/p6en/+Pj4/////////////////3tvbv/Oycn//////+jm5f8aBgO9GgYDNwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgYDGhoGA71+eXn/q6ur/7+/v//V1dX/6enp/6ukov////////////////97b27/zsnJ///////o5uX/GgYDvRoGAzcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoGAxoaBgO9fnl5/6urq/+/v7//1dXV/+np6f/4+Pj//////6+op//o5uX/VUZE/87Jyf//////6Obl/xoGA70aBgM3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaBgMaGgYDvX55ef+rq6v/v7+//9XV1f/p6en/+Pj4////////////6Obl/1VGRP9VRkT/zsnJ/+jm5f8aBgO9GgYDNwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgYDGhoGA71+eXn/q6ur/7+/v//V1dX/6enp//j4+P////////////////9VRkT/GgYDNxoGAzcaBgM3GgYDvRoGAzcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoGAxoaBgO9fnl5/6urq/+/v7//1dXV/+np6f/4+Pj/////////////////VUZE/xoGAzcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaBgMaGgYDvX55ef+rq6v/v7+//9XV1f/p6en/+Pj4/////////////////1VGRP8aBgM3AAAAAAAA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'),
pointer;
}
.userlist-container {
width: 300px;
height: 70px;
overflow: hidden;
position: absolute;
top: 0;
right: 0;
margin-right: 1em;
}
#userList::-webkit-scrollbar {
display: none;
}
#userList {
width: 100%;
height: 100%;
white-space: nowrap;
overflow-x: scroll;
padding-right: 17px;
text-align: right;
}
#userList li {
list-style: none;
margin: 6px;
display: inline-block;
overflow: hidden;
width: 36px;
height: 36px;
border: 1px #dedede solid;
background-color: #FDFDAA;
cursor: pointer;
}
#userList li p {
visibility: hidden;
margin: 1px 8px;
text-transform: uppercase;
line-height: 32px;
}
#userList li p:first-letter {
visibility: visible;
font-size: 24px;
}
.stickie-note.yellow, #userList li.yellow {
background: #FDFDAA;
}
.stickie-note.pink, #userList li.pink {
background: #ECBCC8;
}
.stickie-note.green, #userList li.green {
background: #BAF7BD;
}
.stickie-note.blue, #userList li.blue {
background: #B3E5FB;
}
.stickie-note.purple, #userList li.purple {
background: #D6BEDC;
}
#stickiesList {
overflow: hidden;
}
#stickiesList li {
list-style: none;
margin: 1em;
display: inline-block;
}
/* making them more whimsical */
#stickiesList li:nth-child(odd) .stickieWrapper {
-webkit-transform: rotate(3deg);
-moz-transform: rotate(3deg);
transform: rotate(3deg);
}
#stickiesList li:nth-child(even) .stickieWrapper {
-webkit-transform: rotate(-2deg) translateY(10px);;
-moz-transform: rotate(-2deg) translateY(10px);;
transform: rotate(-2deg) translateY(10px);
}
#stickiesList li:nth-child(3n) .stickieWrapper {
-webkit-transform: rotate(6deg);
-moz-transform: rotate(6deg);
transform: rotate(6deg);
}
#stickiesList li:nth-child(7n) .stickieWrapper {
-webkit-transform: rotate(-8deg) translateY(5px);
-moz-transform: rotate(-8deg) translateY(5px);
transform: rotate(-8deg) translateY(5px);
}
/* These classes are added by React ReactCSSTransitionGroup */
.animation-enter {
opacity: 0.1;
transform: scale(1.3);
transition: all 1s ease-out;
}
.animation-enter.animation-enter-active {
opacity: 1;
transform: scale(1);
}
@media only screen and (min-width: 856px) {
.stickie-note {
background: #ffa;
position: relative;
display: block;
height: 220px;
width: 220px;
padding: 10px;
box-shadow: 2px 4px 8px rgba(0,0,0,.3), inset 0 0 24px rgba(0, 0, 0, .2);
}
.stickie-note p.note {
font-size: 1.5em;
line-height: 1.6em;
height: 140px;
}
textarea {
width: 200px;
height: 170px;
}
.userlist-container {
width: 400px;
}
}
'use strict'
var username = (localStorage.getItem('username')) ? (localStorage.getItem('username')) : window.prompt('Your name');
username = (!username) ? 'anonymous-' + ~~(Math.random() * 10000) : username;
localStorage.setItem('username', username);
const colors = ['yellow', 'pink', 'green', 'blue', 'purple'];
var color = (localStorage.getItem('color')) ? (localStorage.getItem('color')) : colors[~~(Math.random() * colors.length)];
localStorage.setItem('color', color);
// Please use your own keys
// Sign up and get keys at https://pubnub.com
const publish_key = 'pub-c-1d17120d-f60e-437a-b7c4-b89f773629cb';
const subscribe_key = 'sub-c-85bdcc70-067d-11e6-996b-0619f8945a4f';
const pubnub = PUBNUB.init({
publish_key : publish_key,
subscribe_key : subscribe_key,
ssl: true,
uuid: username
});
const channel = 'stickie-notes';
// React Add-ons
var ReactCSSTransitionGroup = React.addons.CSSTransitionGroup;
// Parent class - Connect PubNub to get realtime data
var CollabStickies = React.createClass({
getInitialState: function() {
return {
stickieList: [],
userList: []
};
},
componentWillMount() {
pubnub.subscribe({
channel: channel,
restore: true,
connect: this.connect,
message: this.success,
presence: this.presenceChanged
});
},
componentDidMount() { // set state with the user data and send it to PubNub
var userdata = {username: this.props.username, color: this.props.color, timestamp: Date.now()};
pubnub.state({
channel: channel,
uuid: this.props.username,
callback: this.handleStateChange,
state: userdata
});
},
connect: function() { // grab data from PubNub History API when PubNub is connected for the first time
pubnub.history({
channel: channel,
count: 50,
callback: (m) => {
m[0].reverse();
for (var v of m[0]) {
let newList = this.state.stickieList.concat(v);
this.setState({stickieList: newList});
}
}
});
},
success: function(m) { // Update the stickie note list
let newList = [m].concat(this.state.stickieList);
this.setState({stickieList: newList});
},
presenceChanged(m) {
if(m.data) { // metadata is attached when m.action == 'state-change' or 'timeout'. Also 'join' at the first time after a user enter a name
console.log(m);
pubnub.here_now({
channel: channel,
callback: this.getUserList
});
}
},
handleStateChange() {
console.log('The user state with stickie color is set');
},
getUserList: function(m) {
console.log('here_now callback');
this.state.userList.length = 0;
var i = 0;
for (var u of m.uuids) { // ES6 for-of loop
pubnub.state({ //get state
channel: channel,
uuid: u,
callback: (s) => {
if(!s.username) return; // ignore debug console
let newList = this.state.userList.concat({username: s.username, color: s.color, timestamp: s.timestamp});
if(i == m.uuids.length)
this.setState({userList: newList});
}
});
i++;
}
},
render: function() {
return (
<div>
<UserList userList={this.state.userList} />
<StickieWritable username={this.props.username} color={this.props.color} />
<StickieList stickieList={this.state.stickieList} />
</div>
);
}
});
var StickieWritable = React.createClass({
handleTextChange: function(e) {
if(e.keyCode != 13) return;
if(e.target.value == '') return;
if(e.target.value == '\n') {
e.target.value = '';
return;
}
var data = {
username: this.props.username,
color: this.props.color,
text: e.target.value,
timestamp: Date.now()
}
pubnub.publish({
channel: channel,
message: data,
callback: e.target.value = ''
});
},
render: function() {
return (
<div className={'stickie-note writable ' + this.props.color}>
<textarea type='text' placeholder='Your new note...' onKeyUp={this.handleTextChange} />
<p className='username'>{this.props.username}</p>
</div>
);
}
});
// -- Stickie -- //
var Stickie = React.createClass({
render: function() {
return (
<div className={'stickie-note ' + this.props.color} >
<p className='note'>{this.props.text}</p>
<p className='username'>{this.props.username}</p>
</div>
);
}
});
// -- List -- //
var StickieList = React.createClass({
render: function() {
let items = (this.props.stickieList || []).map((item) =>
<li key={item.timestamp} >
<div className="stickieWrapper">
<Stickie text={item.text} color={item.color} username={item.username}/>
</div>
</li>);
return (
<ReactCSSTransitionGroup transitionName='animation' component='ul' id="stickiesList">
{items}
</ReactCSSTransitionGroup>
)
}
});
var UserList = React.createClass({
render: function() {
return (
<section className="userlist-container">
<ul id="userList">
{this.props.userList.map((item, index) =>
<li key={index} className={item.color} title={item.username}><p>{item.username}</p></li>)}
</ul>
</section>
)
}
});
// -- DOM -- //
ReactDOM.render(
<CollabStickies username={username} color={color} />,
document.getElementById('container')
);
Also see: Tab Triggers