我正在编码一个在窗口的同一位置出现并重新出现固定位置元素的网页。所有元素都有一个类名Select count(*) from table where col1= x and col2=x and Col3=x.
和"event"
。
由于我编写了用于淡入和淡出元素的JavaScript,因此我需要使用opacity=0.0
类"event"
设置第一个元素。
我尝试使用opacity=1.0
并调用匿名函数。
此外,当我尝试尝试以下操作时:
window.onload = function() {* set element style *}
即使该元素在屏幕上不可见,我仍返回window.onload = function() {
let first = document.querySelector('.event');
elOpacity = window.getComputedStyle(first).getPropertyValue("opacity");
console.log(elOpacity);
}
。
我的想法已经用完了。我只需要设置1
类对象中返回的第一个元素的样式,即可将"events"
设置为opacity
。