Drag Rotate

by shanejones

HTML

<div class="outer">
  <div class="rotate"></div>
</div>

SCSS

.outer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
}

.rotate {
  width: 150px;
  height: 150px;
  background-color: #ccc;
}

JavaScript

$()