-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-page.html
More file actions
167 lines (148 loc) · 5.02 KB
/
test-page.html
File metadata and controls
167 lines (148 loc) · 5.02 KB
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Animation Builder Test Page</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
margin: 0;
padding: 40px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
}
.container {
max-width: 800px;
margin: 0 auto;
background: white;
padding: 40px;
border-radius: 20px;
box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
h1 {
color: #333;
font-size: 3rem;
margin-bottom: 20px;
text-align: center;
}
h2 {
color: #555;
font-size: 2rem;
margin-top: 40px;
margin-bottom: 20px;
}
p {
color: #666;
font-size: 1.1rem;
margin-bottom: 20px;
}
.button {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 15px 30px;
border: none;
border-radius: 10px;
font-size: 1.1rem;
cursor: pointer;
margin: 10px;
transition: transform 0.2s;
}
.button:hover {
transform: translateY(-2px);
}
.card {
background: #f8f9fa;
padding: 20px;
border-radius: 10px;
margin: 20px 0;
border-left: 4px solid #667eea;
}
.image-placeholder {
width: 200px;
height: 150px;
background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
border-radius: 10px;
margin: 20px 0;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: bold;
}
.stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin: 40px 0;
}
.stat {
text-align: center;
padding: 20px;
background: #f8f9fa;
border-radius: 10px;
}
.stat-number {
font-size: 2.5rem;
font-weight: bold;
color: #667eea;
margin-bottom: 10px;
}
.stat-label {
color: #666;
font-size: 1rem;
}
</style>
</head>
<body>
<div class="container">
<h1 id="main-title">Welcome to Animation Builder</h1>
<p id="intro-text">
This is a test page for the Animation Builder Chrome extension.
Try selecting different elements and adding animations to see how they work!
</p>
<div class="card">
<h2 id="features-title">Key Features</h2>
<p id="features-text">
The Animation Builder allows you to prototype animations on any website
before writing any code. Perfect for designers and developers!
</p>
</div>
<div class="image-placeholder" id="hero-image">
Sample Image
</div>
<h2 id="cta-title">Get Started</h2>
<p id="cta-text">Click the buttons below to test different animations:</p>
<button class="button" id="primary-button">Primary Action</button>
<button class="button" id="secondary-button">Secondary Action</button>
<a href="#" class="button" id="link-button">Link Button</a>
<div class="stats">
<div class="stat">
<div class="stat-number" id="stat-1">10K+</div>
<div class="stat-label">Users</div>
</div>
<div class="stat">
<div class="stat-number" id="stat-2">50K+</div>
<div class="stat-label">Animations</div>
</div>
<div class="stat">
<div class="stat-number" id="stat-3">99.9%</div>
<div class="stat-label">Uptime</div>
</div>
</div>
<div class="card">
<h2 id="instructions-title">How to Test</h2>
<p id="instructions-text">
1. Load the Animation Builder extension in Chrome<br>
2. Click the extension icon to open the popup<br>
3. Click "Select Element" to enter selection mode<br>
4. Click on any element on this page to select it<br>
5. Choose an animation type and settings<br>
6. Click "Add to Timeline" to add the animation<br>
7. Use "Play" to see the animation on this page!
</p>
</div>
</div>
</body>
</html>