Skip to content

Commit

Permalink
add safari css
Browse files Browse the repository at this point in the history
  • Loading branch information
syzygy608 committed Sep 20, 2023
1 parent fd7f550 commit eacef78
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/components/pages/main/courseCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -77,30 +77,37 @@
}
.card:hover{
transition: 0.100s linear;
transform: scale(1.25) ;
transform: scale(1.25);
-webkit-transform: scale(1.25) ;
z-index:2;
}
.fliping-enter-active {
transition: all 0.15s ease;
-webkit-transition: all 0.15s ease;
}
.fliping-leave-active{
transition: all 0.15s ease;
-webkit-transition: all 0.15s ease;
}
.fliping-enter {
transform: rotateY(180deg);
-webkit-transform: rotateY(180deg);
opacity: 0;
}
.fliping-leave-to {
transform: rotateY(90deg);
-webkit-transform: rotateY(90deg);
opacity: 0;
}
.fliping-enter-to{
transform: rotateY(0);
-webkit-transform: rotateY(0);
opacity: 0;
}
.fliping-leave {
transform: rotateY(180deg);
-webkit-transform: rotateY(180deg);
opacity: 0;
}
Expand Down

0 comments on commit eacef78

Please sign in to comment.