Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
262 views
in Technique[技术] by (71.8m points)

javascript - Fill rotated landscape image within fixed sized container

.photo-wrapper{
  width: 200px;
  height: 240px;
}

img{
 transform: rotate(90deg);
 display:block;
 width:100%;
}

<div class="photo-wrapper">
  <img src="landscape-image.jpg"/>
</div>

Wthin .photo-wrapper users can upload an image, whether it is portrait or landscape it spans the width of the container correctly when uploaded, but there is an option to rotate it, when it is rotated the height of the image doesn't span the width of the container it maintains the height it has when uploaded to the container. Is there a way this can be done?

question from:https://stackoverflow.com/questions/65841416/fill-rotated-landscape-image-within-fixed-sized-container

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Since the container has fixed width/height you can do like below:

.photo-wrapper {
  --w: 200px;
  --h: 240px;
  width: var(--w);
  height: var(--h);
  border: 1px solid;
  display:inline-block;
}

img {
  display: block;
  width: var(--w);
  height: var(--h);
  object-fit:cover;
}

img.rotate {
  transform: rotate(90deg) translateY(-100%);
  width: var(--h);
  height: var(--w);
  transform-origin: top left;
}
<div class="photo-wrapper">
  <img src="https://picsum.photos/id/1/400/300">
</div>

<div class="photo-wrapper">
  <img class="rotate" src="https://picsum.photos/id/1/400/300">
</div>

<div class="photo-wrapper">
  <img src="https://picsum.photos/id/104/500/600">
</div>

<div class="photo-wrapper">
  <img class="rotate" src="https://picsum.photos/id/104/500/600">
</div>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...