“Flip Image CSS” Ответ

Как отражать объект через CSS

.mirror {
  transform: scaleX(-1);
}
Comfortable Caterpillar

CSS перевернуть изображение горизонтально

.flip-horizontally {
  transform: scaleX(-1);
}
Vast Vendace

Flip Image CSS

.image{
  transform: rotateY(180deg);
}
Worried Wallaby

Flip Image CSS

img{
  transform: rotateY(180deg);
}
syeddeveloper

CSS Flip Animation

/* entire container, keeps perspective */
.flip-container {
	perspective: 1000px;
}
	/* flip the pane when hovered */
	.flip-container:hover .flipper, .flip-container.hover .flipper {
		transform: rotateY(180deg);
	}

.flip-container, .front, .back {
	width: 320px;
	height: 480px;
}

/* flip speed goes here */
.flipper {
	transition: 0.6s;
	transform-style: preserve-3d;

	position: relative;
}

/* hide back of pane during swap */
.front, .back {
	backface-visibility: hidden;

	position: absolute;
	top: 0;
	left: 0;
}

/* front pane, placed above back */
.front {
	z-index: 2;
	/* for firefox 31 */
	transform: rotateY(0deg);
}

/* back, initially hidden pane */
.back {
	transform: rotateY(180deg);
}
Meobot Botbot

Переверните изображение JS

<div class="f1_container">
    <div class="shadow f1_card">
        <div class="front face">
            <img src="http://media-cdn.tripadvisor.com/media/photo-s/03/48/0b/14/dolphin-view-chalets.jpg" style="height: 281px; width: 450px;" />
        </div>
        <div class="back face center">
            <img src="http://media-cdn.tripadvisor.com/media/photo-s/03/48/0b/14/dolphin-view-chalets.jpg" style="height: 281px; width: 450px;" />
        </div>
    </div>
</div>
Vivacious Vulture

Ответы похожие на “Flip Image CSS”

Вопросы похожие на “Flip Image CSS”

Больше похожих ответов на “Flip Image CSS” по CSS

Смотреть популярные ответы по языку

Смотреть другие языки программирования