<!-- <h1>Challenge 2: Finished</h1> -->
<div class="wrapper">
  <div class="graph">
  <div class="box red"></div>
  <div class="box blue"></div>
    <div class="green"></div>
</div>
  <div class="instructions">

    <h2>Instructions</h2>
      
    Make these changes to your Challenge 2 file:  
    <ul>
      
      <li>have the red and blue elements bounce off each other when they meet</li>
      <li>during the last second of vertical movement, spin red and blue 360 degrees with a slight overshoot</li>
      
    </ul>
    
    
    
    
  </div> 
</div>

<!-- <h2>All challenges start with:</h2>
  <ul>
    <li>a div with class of .graph (400x350 grid of 50x50 tiles)</li>
    <li>a div with class of .red positioned at x:150, y:150</li>
    <li>a div with class of .blue positioned at x:200, y:150</li>
    <li>a div with class of .green which may be needed later</li>
</ul>
   -->
body {
  font-family:sans-serif;
  font-size:22px;
}

.wrapper {
  
  display:flex;
  flex-wrap:wrap;
}
.instructions{
  padding:20px;
  width:800px;
}

li{
  margin:10px;
}


.graph{
  position:relative;
  width:400px;
  height:350px;
  background-color:#ccc;
background-image: linear-gradient(white 2px, transparent 2px),
linear-gradient(90deg, white 2px, transparent 2px),
linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px);
background-size: 50px 50px, 50px 50px;
background-position:-2px -2px, -2px -2px;
}

.box {
  width:48px;
  height:48px;
  position:absolute;
}

.red {
  background:red;
  transform:translate(150px, 150px);
}

.blue {
  background:blue;
  transform:translate(200px, 150px);
}

.green {
  width:398px;
  height:10px;
  position:absolute;
  background:green;
  bottom:-10px;
}
let tl = gsap.timeline()
tl.from(".graph", {duration:2, opacity:0})
  .from(".red", {duration:1, x:0, ease:"bounce"})
  .from(".blue", {duration:1, x:350, ease:"bounce"}, "<")
  .to(".red", {duration:2, y:0}, "+=1")
  .to(".blue", {duration:2, y:300}, "<")
  .to(".red, .blue", {rotation:360, ease:"back", duration:1}, "-=1")
  .from(".green", {duration:tl.duration(), scaleX:0, transformOrigin:"0 0", ease:"none"}, 0)



GSDevTools.create()




document.querySelector(".graph").addEventListener("click", () => tl.restart())

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

  1. https://cdnjs.cloudflare.com/ajax/libs/gsap/3.2.6/gsap.min.js
  2. https://s3-us-west-2.amazonaws.com/s.cdpn.io/16327/GSDevTools3.min.js