Skip to content

Instantly share code, notes, and snippets.

@btoll
Created July 2, 2011 19:57
Show Gist options
  • Save btoll/1061586 to your computer and use it in GitHub Desktop.
Save btoll/1061586 to your computer and use it in GitHub Desktop.
CSSCompress: CSS compression tool
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="copyright" content="&copy; copyright 2007-2009, Benjamin Toll" />
<title>CSS Compressor</title>
<style type="text/css">
body {
background: #EED;
text-align: center;
}
h1 {
background: #FFF;
border: 2px solid #999;
font-size: 22px;
margin: 0 auto;
padding: 4px 6px 4px 4px;
width: 140px;
}
h1 span {
color: blue;
font-family: cursive;
font-style: italic;
}
p {
margin-bottom: 0;
}
p.warning {
font-weight: bold;
margin-top: 0;
}
p.warning span {
color: #F00;
}
div {
margin: 0 auto;
width: 90%;
}
textarea {
border: 1px solid #789;
color: #789;
font-weight: bold;
margin: 20px auto;
height: 170px;
width: 100%;
}
textarea:focus {
outline: 2px solid invert;
}
textarea#treated {
background: #F0F0F0;
}
div#stats {
margin-left: 80px;
text-align: left;
width: 200px;
}
div#stats label {
clear: left;
float: left;
width: 100px;
}
div#stats input {
float: left;
}
</style>
<script type="text/javascript">
function $(sElem) {
return document.getElementById(sElem);
}
function cssCompress() {
var iOldSize = $("untreated").value.length;
var sSkinned = $("untreated").value;
sSkinned = sSkinned.replace(/\/\*(?:.|\s)*?\*\//g, ""); //strip out any comments of the "/* ... */" type (non-greedy); the subexpression matches all chars AND whitespace;
sSkinned = sSkinned.replace(/\s*({|}|:|;|=|,|<|>)\s*/g, "$1"); //remove all whitespace before and after the following chars: { } : ; = , < >
sSkinned = sSkinned.replace(/^\s+|\s+$/g, "").replace(/\s{2,}/g, " "); //lastly, replace all double spaces with a single space;
//display the results;
$("treated").value = sSkinned;
$("oldSize").value = iOldSize;
$("newSize").value = sSkinned.length;
$("ratio").value = (Math.round(sSkinned.length / iOldSize * 1000) / 10) + "%";
$("stats").style.display = "block";
}
window.onload = function () {
(function () {
$("untreated").focus();
var cLinks = document.getElementsByTagName("a");
var iLinksLength = cLinks.length;
for (var i = 0; i < iLinksLength; i++) {
cLinks[i].onfocus = function () { if (this.blur) this.blur(); };
}
var cButtons = document.getElementsByTagName("button");
for (var i in cButtons) {
cButtons[i].onfocus = function () { if (this.blur) this.blur(); };
}
$("compress").onclick = function() { cssCompress(); };
$("clear").onclick = function () {
$("untreated").value = "";
$("treated").value = "";
$("untreated").focus();
};
$("selectAll").onclick = function () { $("treated").select(); };
$("theForm").onsubmit = function () { return false; };
})();
};
</script>
</head>
<body>
<h1>CSS<span>Compress</span></h1>
<p>The basic functionality for this CSS compressor was inspired by Douglas Crockford's <a href="http://fmarcia.info/jsmin/test.html">JSMin</a> and Dean Edward's <a href="http://dean.edwards.name/packer/">Packer</a>.</p>
<p class="warning"><span>Warning!</span> Compression is a one-way trip, so please backup all files before running them through the compressor!</p>
<form id="theForm" action="stripper.html">
<div>
<textarea id="untreated"></textarea>
<button id="compress">Compress</button>
<button id="clear">Clear</button>
<textarea id="treated"></textarea>
<button id="selectAll">Select All</button>
</div>
<div id="stats" style="display: none;">
<h2>Stats</h2>
<label for="oldSize">Old Size</label> <input type="text" id="oldSize" size="5" />
<label for="newSize">New Size</label> <input type="text" id="newSize" size="5" />
<label for="ratio">Ratio</label> <input type="text" id="ratio" size="5" />
</div>
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment