JSFiddle - React, Tailwind, and code Playground
by kosmos
HTML
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js""></script>
<div id="login_wrapper"></div>
CSS
#login_wrapper { width: 200px; height: 200px; background: red; }
JavaScript
$( document ).ready(function() {
$( "#login_wrapper" ).effect( "shake", { times: 3 } );
});