setInterval(function(){
$('.test') .fadeOut(500, function(){$(this).fadeIn(500)});
},2000);
I'd like to blink the text with test in the class name.
IE keeps blinking, but chrome stops blinking once.
It specifies 2000 milliseconds, but chrome works fine at 1000 milliseconds.
What should I do if I specify 2000 milliseconds?
My environment is as follows, but it seems to be working even with 2000 milliseconds.
chrome version: 67.0.3396.99 (Official Build) (64-bit)
Will the following code work in @html's chrome environment?
Also, are there any error messages on the console when it doesn't work?
setInterval(function(){
$('.test') .fadeOut(500, function(){$(this).fadeIn(500)});
},2000);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<p class="test">hoge</p>
574 Who developed the "avformat-59.dll" that comes with FFmpeg?
915 When building Fast API+Uvicorn environment with PyInstaller, console=False results in an error
613 GDB gets version error when attempting to debug with the Presense SDK (IDE)
572 rails db:create error: Could not find mysql2-0.5.4 in any of the sources
© 2024 OneMinuteCode. All rights reserved.