Shuryga,
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
div.hot{
width: 100px;
height: 100px;
border: 1px dashed Gray;
padding: 5px;
transition: 1s cubic-bezier(.1,.9,.8,.1);
}
.Red{
background-color: Red;
}
.left{
margin-left: 500px;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>
$(function() {
$(".one").on("click", function() {
$(this).toggleClass("left")
})
});
</script>
</head>
<body>
<div class="hot Red one">click me</div>
</body>
</html>