This time I will give you a detailed explanation of the steps for operating the transparency of an object with JS. What are the precautions for operating the transparency of an object with JS? The following is a practical case, let's take a look.
In addition to changing the width, height, letf, top position or movement direction of the object to achieve the movement effect of the object, changing the transparency of the object is also a special movement effect<script> window.onload = function () { var op = document.getElementById('p1'); op.onmousemove = function () { startMove(100); } op.onmouseout = function () { startMove(30); } } var timer = null; function startMove(iTarget) { clearInterval(timer); var op = document.getElementById('p1'); timer = setInterval(function(){ if(op.offsetAlpha == iTarget){ .... } },30); } </script>
Height, these four methods, and there is no offsetAlpha method.
Question: So how do we get the transparency of the current object? ? We can define a variable ourselves var alpha = 30; by judging whether this variable is equal to the target value, we can continue our next operation;var alpha = 30; // 自定义一个变量
timer, otherwise change the transparency value alpha
if(alpha == iTarget){ clearInterval(timer); }else{ alpha += iSpeed; op.style.opacity = alpha/100; op.style.filter = 'alpha(opacity:'+alpha+')'; }
<p id="p1"></p>
<style> #p1{ width: 100px;height: 100px; background: green; opacity:0.3; filter:alpha(opacity:30);/*兼容低版本IE*/ } </style>
<script> window.onload = function () { var op = document.getElementById('p1'); op.onmousemove = function () { startMove(100); } op.onmouseout = function () { startMove(30); } } var timer = null; var alpha = 30; function startMove(iTarget) { clearInterval(timer); var op = document.getElementById('p1'); var iSpeed = 0; timer = setInterval(function(){ if(alpha>iTarget){ iSpeed = -10; }else{ iSpeed = 10; } if(alpha == iTarget){ clearInterval(timer); }else{ alpha += iSpeed; op.style.opacity = alpha/100; op.style.filter = 'alpha(opacity:'+alpha+')'; } },30); } </script>
How to implement multi-object movement in JS
Steps to achieve seamless scrolling effect with vue.js Detailed explanation
The above is the detailed content of Detailed explanation of the steps to manipulate the transparency of objects in JS. For more information, please follow other related articles on the PHP Chinese website!