JSFiddle - React, Tailwind, and code Playground

by asuma igarashi

HTML

<div class="test">
test
</div>

CSS

.test {
  display: none;
}

JavaScript

const $test = $('.test');
$test.text('[AUTO] 自動的にデータを関連付けました。');
$test.css('display', 'block').animate({
  display: 'none'
}, 4000);