ボタンのアニメーションに問題があります。これは私が望んでいたボタンアニメーションの問題
、1秒後にフェードイン:まず、私は窓が、このコードを装填した後にボタンが表示されました。そして、私はいくつかのCSS製:
.wrapper {
position: absolute;
top: 50%;
width: 100%;
text-align: center;
bottom: 0;
right: 0;
align-items: center;
justify-content: center;
}
.button {
display: none;
background-color: rgba(255, 255, 255, 0.2);
background-repeat:no-repeat;
width: 150px;
padding: 20px;
color: #000;
border: 3px solid rgb(48, 48, 48);
border-radius: 20px 20px 20px 20px;
margin:0 5px;
transition: ease 1s;
}
.button:hover {
background-color: rgba(255, 255, 255, 0.5);
border: :3px solid rgb(35, 35, 35);
border-radius: 10px 10px 10px 10px;
transition: ease 1s;
}
をそして私は、このHTMLがあります。ボタンはもうフェードインとちょうど1秒後にポップアップ表示されません。このCSSで
<div class="wrapper">
<button class="button" id="">Ex. 1</button>
<button class="button" id="">Ex. 1</button>
<button class="button" id="">Ex. 1</button>
<button class="button" id="">Ex. 1</button>
<button class="button" id="">Ex. 1</button>
</div>
を。これを引き起こしたアイデアか、私は何か愚かなことをしましたか(おそらくケース:D)?
お手数をおかけしていただきありがとうございます。
さて、私はちょうど 'transition:1s ease-in-out; 'が私のコードに問題を引き起こすことを知りました。しかし、不透明度を使用するソリューションは完全に機能します。あなたの時間をありがとう、本当に私を助けた! – Sylent
youre wellcome;) –