.oblako{
position:absolute;
top:1350px;
left:1000px;
border-radius:40%;
background:url("/clicker/image/oblako1.png") no-repeat;
width:1000px;
height:300px;
transform:rotate(0deg);
z-index:1;
}
$clicker.animate({transform:"rotate(270deg)"})
.oblako {
position:absolute;
top:1350px;
left:1000px;
border-radius:40%;
background:url("/clicker/image/oblako1.png") no-repeat;
width:1000px;
height:300px;
transform:rotate(0deg);
z-index:1;
transition: all 0.6s ease;
}
.oblako__active {
transform:rotate(270deg);
}
$('.oblako').click(function (){
$(this).addClass('oblako__active');
});