要素上にホバーを作成しようとしていますが、それは数パーセント大きくなりますが、タイトルと内容をどこに残しておきたいですか。要素にscale(1.05)
を追加するだけで、コンテンツの縮尺も変わります。要素(と背景)はスケールしますが、コンテンツはスケールしません
.container {
display: block;
width: 100%;
padding: 50px;
}
.element {
height: 562px;
width: 590px;
display: inline-block;
position: relative;
-webkit-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
background-image: url(https://images.unsplash.com/photo-1451906278231-17b8ff0a8880?crop=entropy&fit=crop&fm=jpg&h=975&ixjsv=2.1.0&ixlib=rb-0.3.5&q=80&w=1925);
background-size: cover;
background-position: center center;
}
.title {
font-size: 45px;
line-height: 48px;
bottom: 10%;
position: absolute;
margin: 0 25px;
color: #fff;
text-shadow: 0 2px 0 rgba(0, 0, 0, 0.14);
font-weight: 700;
font-family: sans-serif;
-webkit-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
}
.element:hover {
transform: scale(1.05);
z-index: 10;
}
.element:hover .title {
transform: scale(0.95);
}
<div class="container">
<div class="element">
<div class="title">This is the big title.</div>
</div>
</div>
コンテンツ内の絶対に私は置かれている:私はサイズが元のようになりますが、配置は同じではありませんscale(0.95)
と内側の要素をスケーリング対抗しようとした場合bottom
とleft
というプロパティを指定して修正する必要があるかもしれませんが、内部要素にはまだ移行があると思います。
これを回避する手段はありますか?内容に影響を与えずに要素を展開するだけですか?
もう一つは、私がpseudoelementでURLを置くことができないので、(私はワードプレスから画像を引っ張っています)、実行する必要があります。 bgを使った内側要素のアイデアをありがとう。 –