File tree Expand file tree Collapse file tree 1 file changed +18
-2
lines changed Expand file tree Collapse file tree 1 file changed +18
-2
lines changed Original file line number Diff line number Diff line change 4
4
<div class =" container" >
5
5
<div class =" row align-items-center" >
6
6
<div class =" col-6 mx-auto col-md-6 order-md-2" >
7
- <img src =" ~/static/icon.png" alt =" Logo" class =" img-fluid mx-auto d-block mb-3 mb-md-0" >
7
+ <img src =" ~/static/icon.png" alt =" Logo" class =" img-fluid mx-auto d-block mb-3 mb-md-0" id = " logo " >
8
8
</div >
9
9
<div class =" col-md-6 order-md-1 text-center text-md-left pr-md-5" >
10
10
<h1 class =" mb-3 bd-text-purple-bright" >Bootstrap + Vue</h1 >
40
40
.version a {
41
41
color : white ;
42
42
}
43
+
44
+ #logo {
45
+ animation : flip 1s ;
46
+ transform-style : preserve-3d ;
47
+ }
48
+
49
+ @keyframes flip {
50
+ 0% {
51
+ opacity : .5 ;
52
+ transform : rotateY (180deg );
53
+ }
54
+ 100% {
55
+ opacity : 1 ;
56
+ transform : rotateY (0deg );
57
+ }
58
+ }
43
59
</style >
44
60
45
61
<script >
46
- import { version } from ' ~/content' ;
62
+ import { version } from " ~/content" ;
47
63
48
64
export default {
49
65
computed: {
You can’t perform that action at this time.
0 commit comments