JSFiddle - React, Tailwind, and code Playground

by mustafa yılmaz

HTML

<html>
<head>
  <style>
  div { background:yellow; border:1px solid #AAA; width:80px; height:80px; margin:0 5px; float:left; }
  div.renkli { background:green; }
  </style>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
  <button id="calistir">Çalıştır</button>

  <div></div>
  <div id="hareketli"></div>
  <div></div>
<script>

    $("#calistir").click(function(){
      $("div:animated").toggleClass("renkli");
    });
    function hareketlendir() {
      $("#hareketli").slideToggle("slow", hareketlendir);
    }
    hareketlendir();
</script>

</body>
</html>