Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
  <div id="box" class="box"></div>
  
  <div id="result"></div>
</body>
</html>
 
.box {
  width: 180px;
  height: 180px;
  margin: 50px auto;
  background: orange;
  border: solid 2px #444;
  -webkit-transition: width 1s linear,
                      height 1s linear,
                      background-color 1s ease-out;
     -moz-transition: width 1s linear,
                      height 1s linear,
                      background-color 2s ease-out;
       -o-transition: width 1s linear,
                      height 1s linear,
                      background-color 1s ease-out;
          transition: width 1s linear,
                      height 1s linear,
                      background-color 1s ease-out;
}
.box:hover {
  cursor: pointer;
  width: 200px;
  height: 200px;
  background-color: aquamarine;
}
Output 300px

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
ImpressiveWebspro
0viewers