ボタンにスライド右トランジションを作成しようとしています。 .container背景色を削除すると、トランジションが機能します。しかし、コンテナの色をデフォルトに保ちながら、ボタンを黒で始めると黄色に変わります。しかし、出力は異なるようです。ボタンの背景が透明な場合は、黄色に変わります。どんな助けもありがたいです。CSSトランジションボタンの背景色
.container {
\t background: #F0F0F0;
\t margin: 20px 20%
}
a.animated-button:link, a.animated-button:visited {
\t position: relative;
\t display: block;
\t margin: 30px auto 0;
\t padding: 14px 15px;
\t color: #fff;
\t font-size: 14px;
\t text-align: center;
\t text-decoration: none;
\t text-transform: uppercase;
\t overflow: hidden;
\t -webkit-transition: all 1s ease;
\t -moz-transition: all 1s ease;
\t -o-transition: all 1s ease;
\t transition: all 1s ease;
}
a.animated-button:link:after, a.animated-button:visited:after {
\t content: "";
\t position: absolute;
\t height: 0%;
\t left: 50%;
\t top: 50%;
\t width: 150%;
\t z-index: -1;
\t -webkit-transition: all 0.75s ease 0s;
\t -moz-transition: all 0.75s ease 0s;
\t -o-transition: all 0.75s ease 0s;
\t transition: all 0.75s ease 0s;
}
a.animated-button:link:hover, a.animated-button:visited:hover {
\t color: #FFF;
}
a.animated-button:link:hover:after, a.animated-button:visited:hover:after {
\t height: 450%;
}
a.animated-button:link, a.animated-button:visited {
\t position: relative;
\t display: block;
\t margin: 30px auto 0;
\t padding: 14px 15px;
\t color: #fff;
\t font-size: 14px;
\t border-radius: 0;
\t font-weight: bold;
\t text-align: center;
\t text-decoration: none;
\t text-transform: uppercase;
\t overflow: hidden;
\t letter-spacing: .08em;
\t text-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(0, 0, 0, 0.2);
\t -webkit-transition: all 1s ease;
\t -moz-transition: all 1s ease;
\t -o-transition: all 1s ease;
\t transition: all 1s ease;
}
a.animated-button.thar-three {
\t color: #fff;
\t cursor: pointer;
\t display: block;
\t position: relative;
\t border: 2px solid #F7CA18;
\t transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1) 0s;
}
a.animated-button.thar-three:hover {
\t color: #000 !important;
}
a.animated-button.thar-three:hover:before {
\t left: 0%;
\t right: auto;
\t width: 100%;
}
a.animated-button.thar-three:before {
\t display: block;
\t position: absolute;
\t top: 0px;
\t right: 0px;
\t height: 100%;
\t width: 0px;
\t z-index: -1;
\t content: '';
\t color: #000 !important;
\t background: #F7CA18;
\t transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1) 0s;
}
<div class="container">
<p><a href="#" class="animated-button thar-three">Register</a></p>
</div>
ありがとう!ヘルプをよろしくお願いいたします。 – echristo66