<div id="playpen">Mouse Over</div>
#playpen {
background: rgb(155, 155, 155);
text-align: center;
height: 200px;
line-height: 200px;
}
#tabs-example {
background: #cecece;
padding: 8px 0 0 0;
}
.nav {
list-style: none;
border-bottom: 1px solid #a0a0a0;
padding: 10px 10px 0 10px;
}
.nav li {
display: inline;
}
.nav li.active a {
position: relative;
z-index: 1;
bottom: -2px;
margin-top: -2px;
background: #eee;
padding-top: 8px;
padding-bottom: 8px;
}
.nav li a {
display: block;
float: right;
text-decoration: none;
position: relative;
padding: 7px 50px;
margin: 0 0 0 -8px;
color: #222;
background: #d8d7d8;
border-top-right-radius: 20px 40px;
border-top-left-radius: 20px 40px;
border-radius-topleft: 20px 40px;
border-radius-topright: 20px 40px;
box-shadow: inset 1px 1px 0 white;
box-shadow: inset 1px 1px 0 white;
border: 1px solid #a0a0a0;
border-bottom: 0;
}
.content {
min-height: 20px;
background: #eee;
box-shadow: inset 0 1px 0 white;
box-shadow: inset 0 1px 0 white;
}
View Compiled
$(function () {
var originalBGplaypen = $("#playpen").css("background-color"),
x,
y,
xy,
bgWebKit,
bgMoz,
lightColor = "rgba(86,128,255,1.00)",
gradientSize = 100;
// Basic Demo
$("#playpen")
.mousemove(function (e) {
x = e.pageX - this.offsetLeft;
y = e.pageY - this.offsetTop;
xy = x + " " + y;
bgWebKit =
"-webkit-gradient(radial, " +
xy +
", 0, " +
xy +
", " +
gradientSize +
", from(" +
lightColor +
"), to(rgba(255,255,255,0.0))), " +
originalBGplaypen;
bgMoz =
"-moz-radial-gradient(" +
x +
"px " +
y +
"px 45deg, circle, " +
lightColor +
" 0%, " +
originalBGplaypen +
" " +
gradientSize +
"px)";
$(this)
.css({
background: bgWebKit
})
.css({
background: bgMoz
});
})
.mouseleave(function () {
$(this).css({
background: originalBGplaypen
});
});
var originalBG = $(".nav a").css("background-color");
$('.nav li:not(".active") a')
.mousemove(function (e) {
x = e.pageX - this.offsetLeft;
y = e.pageY - this.offsetTop;
xy = x + " " + y;
bgWebKit =
"-webkit-gradient(radial, " +
xy +
", 0, " +
xy +
", 100, from(rgba(255,255,255,0.8)), to(rgba(255,255,255,0.0))), " +
originalBG;
bgMoz =
"-moz-radial-gradient(" +
x +
"px " +
y +
"px 45deg, circle, " +
lightColor +
" 0%, " +
originalBG +
" " +
gradientSize +
"px)";
$(this)
.css({
background: bgWebKit
})
.css({
background: bgMoz
});
})
.mouseleave(function () {
$(this).css({
background: originalBG
});
});
});
This Pen doesn't use any external CSS resources.