I have the HTML code
<div class="container">
<div class="content">
<div class="logo">
<a href="http://www.afterquote.com/"> <img src="logo.jpg" alt="logo" /></a>
</div>
<!--logo-->
</div>
<!--content-->
</div>
<!--container-->
CSS
.logo.animated {
border-radius: 50%;
transform: rotate(720deg);
}
.logo {
height: 80px;
margin: 0 auto;
transition: all 1s ease 0s;
width: 80px;
}
.logo img {
border-radius: 15px;
}
i want to load the .logo.animated class when the page is loaded. please share the jquery code for the same.
addClass()