I understand i cant make the flip box in wordpress. So I'm making one using the jquery version everything is working except for the back face visibility. Do you know why the back face visibility wouldn't be working in this plug in? please find screen shot and i will attach the HTML. I intentionally left one side (back-side )at 50% width to show that there are two sides of the card. If the backface can be hidden everything should work.
Can you please share your code.I have tried this own two different systems and it dosen't work here is my code you said transform: rotateY(10deg); I believe you met 180deg, i obviously tried both. I have also tried with my inline styles removed
Yes your are right, it should be 180deg and your code is fine, except - as I mentioned in my first reply - you should switch the two DIVs. In your code, the .front DIV is the first and the .back is the second. You should put the .front AFTER the .back and it should work.
Hello,
I understand i cant make the flip box in wordpress. So I'm making one using the jquery version everything is working except for the back face visibility. Do you know why the back face visibility wouldn't be working in this plug in? please find screen shot and i will attach the HTML. I intentionally left one side (back-side )at 50% width to show that there are two sides of the card. If the backface can be hidden everything should work.
Hey Alex ;-)
Try with this CSS:
.flip {
backface-visibility: hidden !important;
}
.back{
backface-visibility: hidden !important;
position: absolute;
background: blue;
height: 100%;
width:100%;
transform: rotateY(10deg);
left: 0;
top: 0;
}
.front{
backface-visibility: hidden !important;
position: absolute;
height: 100%;
width:100%;
background: red;
left: 0;
top: 0;
}
and it is important to switch the order of the two inner DIVs, so the -back should be the first in the code and the .front should be the second.
Best Regards,
George | Kreatura Dev Team
Hey George,
Thank you for the response unfortunately this solution doesn't work. I feel like were really close... The backface is still visible
I have created a test file locally and it is fully working for me.
Best Regards,
George | Kreatura Dev Team
George
Can you please share your code.I have tried this own two different systems and it dosen't work here is my code you said transform: rotateY(10deg); I believe you met 180deg, i obviously tried both. I have also tried with my inline styles removed
Yes your are right, it should be 180deg and your code is fine, except - as I mentioned in my first reply - you should switch the two DIVs. In your code, the .front DIV is the first and the .back is the second. You should put the .front AFTER the .back and it should work.
Best Regards,
George | Kreatura Dev Team