jQuery addClass example

Change class name on click in jQuery

by Boba Poshtar

HTML

<div></div>

CSS

div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 100px;
  border: 1px solid red;
  transition: all 0.5s;
}
div:hover {
  left: 50px;
  top: 20px;
  transition: all 2s ease 1s;
}