ashok2216 commited on
Commit
e5b83cb
·
verified ·
1 Parent(s): d3bb5dc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py CHANGED
@@ -23,12 +23,18 @@ page_bg_img = """
23
  background-size: 600% 600%;
24
 
25
  -webkit-animation: AnimationName 59s ease infinite;
 
 
26
 
27
  @-webkit-keyframes AnimationName {
28
  0%{background-position:0% 10%}
29
  50%{background-position:100% 91%}
30
  100%{background-position:0% 10%}
31
  }
 
 
 
 
32
  }
33
  </style>
34
  """
 
23
  background-size: 600% 600%;
24
 
25
  -webkit-animation: AnimationName 59s ease infinite;
26
+ animation: AnimationName 59s ease infinite;
27
+ }
28
 
29
  @-webkit-keyframes AnimationName {
30
  0%{background-position:0% 10%}
31
  50%{background-position:100% 91%}
32
  100%{background-position:0% 10%}
33
  }
34
+ @keyframes AnimationName {
35
+ 0%{background-position:0% 10%}
36
+ 50%{background-position:100% 91%}
37
+ 100%{background-position:0% 10%}
38
  }
39
  </style>
40
  """