Как я могу получить эффект переворота на мобильных устройствах? Он отлично работает на ПК, потому что я использую псевдо-селектор :hover, но на мобильных устройствах он просто переворачивается один раз и переворачивается обратно, только если щелкнуть другую карту. Как добиться полного эффекта флипа на телефонах и планшетах?
.flip-card {
background-color: transparent;
width: 300px;
height: 300px;
perspective: 1000px;
margin: 2%;
}
.flip-card-inner {
position: relative;
width: 100%;
height: 100%;
text-align: center;
transition: transform 0.6s;
transform-style: preserve-3d;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}
.flip-card:hover .flip-card-inner {
transform: rotateY(180deg);
}
.flip-card-front, .flip-card-back {
position: absolute;
width: 100%;
height: 100%;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.flip-card-front {
background-color: #bbb;
color: white;
}
.flip-card-back {
background-color: #2980b9;
color: white;
transform: rotateY(180deg);
}
.preiposle{
display: flex;
justify-content: space-evenly;
padding-top: 50px;
position: relative;
text-align: center;
color: white;
flex-wrap: wrap;
}
Я думаю, вы можете попробовать так.
.flip-card:hover .flip-card-inner::after {
transform: rotateY(180deg);
}
Когда вы нажимаете на экран сенсорного устройства, вы должны представить, что ваш теоретический курсор мыши (который не виден) переместился в положение вашего пальца, и когда вы отпустите палец, он останется в этом положении, пока вы не щелкнете в другом месте. Я могу думать о двух решениях:
У вас уже есть первое решение, так что вот второе (это решение на скрипке):
let touch_div = document.getElementById('touch_div');
let is_touch_device = false;
let touchstart_event_listener; // save the event listeners, if you want to delete them later
let touchend_event_listener; // save the event listeners, if you want to delete them later
if ("ontouchstart" in document.documentElement) { // check if touch is enabled on device
is_touch_device = true;
}
if (is_touch_device) {
touch_div.classList.add('touch-device'); // adds a class to style the div for touch devices
touch_div.addEventListener('touchstart', touchstart_event_listener = () => { // event listener changes the class to hovered when you put your finger on the div
touch_div.classList.replace('touch-device', 'touch-device-hovered');
});
touch_div.addEventListener('touchend', touchend_event_listener = () => { // event listener changes the class back to not hovered when you release your finger
touch_div.classList.replace('touch-device-hovered', 'touch-device');
});
} else {
touch_div.classList.add('mouse-device'); // adds a class to style the div for mouse devices
}
.mouse-device {
width: 100px;
height: 100px;
background-color: purple;
}
.mouse-device:hover {
background-color: green;
}
.touch-device {
margin-top: 10px;
width: 100px;
height: 100px;
background-color: red;
}
.touch-device-hovered {
margin-top: 10px;
width: 100px;
height: 100px;
background-color: blue;
}
.margin-top {
margin-top: 10px;
}
<div class = "mouse-device"></div> <!-- this will always be a div that changes style on hover -->
<div id = "touch_div" class = "margin-top"></div> <!-- this will be identical to the first div when you're not on a touch device, but it will change to touch sensitive when you are on a touch device -->
Эти элементы div не переворачиваются, но вы должны увидеть, как можно управлять стилями на сенсорных устройствах.
Ответьте на это, если у вас есть какие-либо вопросы о моем решении.
Я немного изменил ваш код, но вы подали мне идею. Спасибо чувак, продолжай в том же духе!
Спасибо и удачи с вашим проектом; )
Обновление: я нашел гораздо более простое решение, скрытое с помощью медиа-запроса:
@media only screen and (hover: none){
// styles go here
}
Когда вы хотите, чтобы он перевернулся? Кроме того, пожалуйста, опубликуйте html.