Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
白から別の色に脈動したいのですが、このコードに色を追加する方法がわかりません
<script> $(document).ready(function() { $("#white36").click(function () { $(this).effect("pulsate", { times:3000 }, 500); }); }); </script>
白い要素があり、別の色 (青など) に脈動したい場合は、白い要素の後ろに青の要素を配置します。白いものが消えて、青いものが現れます。
jQeury.Colorプラグインを使用できます。このプラグインを使用すると、次のことができます。
このプラグインを使用すると、次のようなものを使用できます。
jQuery("#block").animate({ backgroundColor: jQuery.Color({ saturation: 0 }) }, 1500 );
例