gpt4 book ai didi

javascript - 为什么不应用 CSS 类(使用 JavaScript onload)?

转载 作者:行者123 更新时间:2023-11-30 12:11:13 24 4
gpt4 key购买 nike

<分区>

我试图在页面加载后添加类,这样添加类中的过渡可以改变元素的高度和不透明度,但我仍然无法让它工作。

html文件:

<head>
<script>
window.onload = function {
document.getElementById('home-id').className='home-class';
};
</script>
</head>

CSS文件:

#home-id {
transition: opacity 1.5s ease-in-out 0s;
height: 0.0em;
opacity: 0.6;
}
html:hover #home-id {
transition: opacity 1.5s ease-in-out 0s;
opacity: 1;
}
.home-class {
transition: height 1s ease-in-out 0s, opacity 1.5s ease-in-out 0s;
height: 40em;
opacity: 1;
}

你能告诉我我做错了什么吗,谢谢。

编辑:我只是补充说,问题不在于缺少 "()",而是在于特异性。

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com