Я хочу, чтобы эта кнопка исчезала после задержки при загрузке моей страницы.
Как я могу сделать это в jQuery?И как сделать так, чтобы другие мои кнопки также появлялись после задержки?
HTML:
<button class="button button2" id="button">Enter</button>
CSS:
.button {
background-color: #4CAF50;
border: none;
color: white;
padding: 16px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin-left: 500px;
margin-top: 150px;
transition-duration: 0.4s;
cursor: pointer;
font-weight: 5000;
}
.button2 {
background-color: transparent;
color: white;
border: 2px solid white;
}
.button2:hover {
background-color: white;
color: black;
font-weight: 800;
}