|
<script type="text/javascript">
$(function () {
$("#fullRating").ejRating({ value: 4 ,maxValue:5,height:30, width:80,shapeHeight:60, shapeWidth:30,cssClass:"custom"});
});
</script>
<style>
.custom.e-rating.e-horizontal .e-shape,
.custom.e-rating.e-vertical .e-shape,
.custom.e-rating.e-horizontal .e-shape-list,
.custom.e-rating.e-vertical .e-shape-list,
.custom.e-rating.e-horizontal .e-reset,
.custom.e-rating.e-vertical .e-reset
{
background: none;
}
.custom.e-rating.e-horizontal .e-reset,
.custom.e-rating.e-vertical .e-reset
{
background: url('../content/images/rating1.png') no-repeat;
background-size:100%;
margin: 1px;
}
.custom.e-rating.e-horizontal .e-shape.selected,
.custom.e-rating.e-horizontal .e-shape.active,
.custom.e-rating.e-vertical .e-shape.selected,
.custom.e-rating.e-vertical .e-shape.active
{
background: url('../content/images/rating2.png') no-repeat;
background-size:100%;
}
.custom.e-rating.e-horizontal .e-shape.inactive,
.custom.e-rating.e-vertical .e-shape.inactive,
.custom.e-rating.e-horizontal .e-shape-list,
.custom.e-rating.e-vertical .e-shape-list
{
background: url('../content/images/rating5.png') no-repeat;
background-size:100%;
}
.custom.e-rating .e-shape.active
{
background-position: 0 0;
}
.custom.e-rating.e-horizontal .e-shape-list,
.custom.e-rating.e-vertical .e-shape-list
{
background-position: 0 0;
float: left;
}
</style> |