iOS7/iMessage-style chat balloons in HTML/CSS with no extra elements.
Forked from Matt Powell's Pen iOS7-style chat balloons.
A Pen by Captain Anonymous on CodePen.
/** | |
* iMessage-style loader | |
*/ | |
@keyframes fade { | |
to { background: rgba(0,0,0,.1); } | |
} | |
.progress, | |
.progress:before, |
iOS7/iMessage-style chat balloons in HTML/CSS with no extra elements.
Forked from Matt Powell's Pen iOS7-style chat balloons.
A Pen by Captain Anonymous on CodePen.
<script> | |
$(document).ready(function() { | |
$("#sbmt").click(function() { | |
var re = /\/ignore\s(.*?)\s/g; | |
var m; | |
var shoutmsgvalue=$("#shoutmsg").val(); | |
while ((m = re.exec(shoutmsgvalue)) != null) { | |
if (m.index === re.lastIndex) { | |
re.lastIndex++; | |
} |