Commit 4b1514eb by halweg

fix : 优惠券翻转角度修复

parent ec758471
......@@ -45,25 +45,23 @@
}
.coupon-wrapper .coupon-front {
transition: all 1s;
backface-visibility: hidden;
}
.coupon-wrapper .coupon-back {
transition: all 1s;
position: absolute;
top: 0;
transform: rotateY(180deg);
transform: rotateY(-180deg);
backface-visibility: hidden;
}
.coupon-wrapper.flipping .coupon-front {
transition: all 1s;
transition: all 2s;
transform: rotateY(180deg);
}
.coupon-wrapper.flipping .coupon-back {
transition: all 1s;
transition: all 2s;
display: block;
transform: rotateY(0deg);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment