File: index.html

package info (click to toggle)
python-pywebview 2.3%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,376 kB
  • sloc: python: 3,816; cs: 116; makefile: 3
file content (140 lines) | stat: -rw-r--r-- 3,277 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title>It works!</title>

    <style type="text/css">
        body {
            color: #333;
            font-size: 14pt;
        }

        h1 {
            font-size: 24pt;
        }

        h1, p {
            visibility: hidden;
        }


        .slideUp{
            animation-name: slideUp;
            -webkit-animation-name: slideUp;

            animation-duration: 1s;
            -webkit-animation-duration: 1s;

            animation-timing-function: ease;
            -webkit-animation-timing-function: ease;

            visibility: visible !important;
        }

        @keyframes slideUp {
            0% {
                transform: translateY(100%);
            }
            50%{
                transform: translateY(-8%);
            }
            65%{
                transform: translateY(4%);
            }
            80%{
                transform: translateY(-4%);
            }
            95%{
                transform: translateY(2%);
            }
            100% {
                transform: translateY(0%);
            }
        }

        @-webkit-keyframes slideUp {
            0% {
                -webkit-transform: translateY(100%);
            }
            50%{
                -webkit-transform: translateY(-8%);
            }
            65%{
                -webkit-transform: translateY(4%);
            }
            80%{
                -webkit-transform: translateY(-4%);
            }
            95%{
                -webkit-transform: translateY(2%);
            }
            100% {
                -webkit-transform: translateY(0%);
            }
        }

        .slideRight{
            animation-name: slideRight;
            -webkit-animation-name: slideRight;

            animation-duration: 1s;
            -webkit-animation-duration: 1s;

            animation-timing-function: ease-in-out;
            -webkit-animation-timing-function: ease-in-out;

            visibility: visible !important;
        }

        @keyframes slideRight {
            0% {
                transform: translateX(-150%);
            }
            50%{
                transform: translateX(8%);
            }
            65%{
                transform: translateX(-4%);
            }
            80%{
                transform: translateX(4%);
            }
            95%{
                transform: translateX(-2%);
            }
            100% {
                transform: translateX(0%);
            }
        }

        @-webkit-keyframes slideRight {
            0% {
                -webkit-transform: translateX(-150%);
            }
            50%{
                -webkit-transform: translateX(8%);
            }
            65%{
                -webkit-transform: translateX(-4%);
            }
            80%{
                -webkit-transform: translateX(4%);
            }
            95%{
                -webkit-transform: translateX(-2%);
            }
            100% {
                -webkit-transform: translateX(0%);
            }
        }
    </style>
</head>
<body>

<h1 class="slideRight">Woah dude!</h1>

<p class="slideUp">It works!<br/> This file is served locally by a Python built-in HTTP server.</p>

</body>
</html>