ホームページ > 記事 > ウェブフロントエンド > 同じ page_javascript スキルで複数のグラデーション効果を実現する js メソッド
この記事の例では、js を使用して同じページに複数のグラデーション効果を実装する方法を説明します。皆さんの参考に共有してください。具体的な分析は次のとおりです。
ここでは、5 つの要素のいずれかの効果を実現できます。マウスを上に移動すると、透明度が徐々に増加し、マウスを外側に移動すると、透明度が徐々に減少します。
ポイント 1:
var speed = 0; if(target>obj.alpha){ speed = 5; }else{ speed = -5; }
目標値と現在値の比較に基づいて速度が正か負かを判断します。
ポイント 2:
for(i=0; i<runs_li.length; i++){ runs_li[i].timer = null; runs_li[i].alpha = 30; runs_li[i].onmouseover = function(){ startrun(this,100); } runs_li[i].onmouseout = function(){ startrun(this,30); } }
各要素に独自の透明度値を追加し、透明度の変更を分離します。
最後に、コードを追加します:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>无标题文档</title> <style> body,ul,li{margin:0; padding:0;} #runs{width:300px; margin:10px auto;} #runs li{width:80px; height:80px; background:#06c; list-style:none; float:left; margin:10px; display:inline; filter:alpha(opacity=30); opacity:0.3;} </style> <script> window.onload = function(){ var runs = document.getElementById("runs"); var runs_li = runs.getElementsByTagName("li"); var i=0; for(i=0; i<runs_li.length; i++){ runs_li[i].timer = null; runs_li[i].alpha = 30; runs_li[i].onmouseover = function(){ startrun(this,100); } runs_li[i].onmouseout = function(){ startrun(this,30); } } } function startrun(obj,target){ clearInterval(obj.timer); obj.timer = setInterval(function(){ var speed = 0; if(target>obj.alpha){ speed = 5; }else{ speed = -5; } if(obj.alpha == target){ clearInterval(obj.timer); }else{ obj.alpha = obj.alpha + speed; obj.style.filter = "alpha(opacity="+obj.alpha+")"; obj.style.opacity = obj.alpha/100; } },30) } </script> </head> <body> <ul id="runs"> <li>1</li> <li>2</li> <li>3</li> <li>4</li> <li>5</li> </ul> </body> </html>
この記事が皆様の JavaScript プログラミング設計に役立つことを願っています。