この記事では、js を使用してディザリング効果を実現する方法をまとめました。これは非常に優れており、興味のある友人は参照してください。
これ以上のナンセンスはありません。コードを直接投稿します。具体的なコードは次のとおりです。 Show:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> #p1 { width: 100px; height: 100px; position: absolute; left: 400px; top: 200px; background: red; } </style> </head> <body> <p id="p1"></p> <script> var p1 = document.querySelector('#p1'); document.onclick = function () { /* * 抖动: * 1. 每次改变一下元素的位置 * 按照一个中心点进行偏移,假设中心点left原始是400,那么每次就以left:400为中心做位置的移动 * 380 -> 420 * */ // p1.style.left = '380px'; // p1.style.left = '420px'; var a = true; setInterval(function() { /* * 根据a的值,做不同的设置 * */ p1.style.left = (a ? 380 : 420) + 'px'; a = !a; }, 30); } </script> </body> </html>
以上がディザリング効果を実現するための JS の簡単なサンプル コード共有の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。