Glitchy love you box
by SwampFall
HTML
<div onmouseover="whatthehell(this)" onmouseleave="willyouworknow(this)" >
</div>
CSS
div {
position: absolute;
top: 5px;
left: 5px;
margin: 5px;
width: 50px;
height: 80px;
background: orange;
}
JavaScript
function whatthehell (object) {
object.setAttribute("love", "you");
object.setAttribute("style", "background: green; left: 50%");
object.innerHTML = "love you";
}
function willyouworknow (object) {
object.setAttribute("style", "background: orange")
}