View hairline.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="ko"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>hair line demo</title> | |
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no"> | |
<link rel="stylesheet" href="./style.css"/> | |
</head> | |
<body> |
View rg-icon.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<section> | |
<h1>Icons</h1> | |
<ul class="items"> | |
<li> | |
<div> | |
<span class="rg-icon hamburger"><i>list</i></span> | |
</div> | |
</li> | |
<li> | |
<div><span class="rg-icon cross"><i>add/close</i></span></div> |
View copyClipboard.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Copy the text to the clipboard | |
* | |
* @Param {String} : copy text | |
* @Param {String} : prompt message | |
* @Return void | |
*/ | |
var copyClipboard = function(str, msg) | |
{ | |
if (window.clipboardData) |
NewerOlder