-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeatures.html
More file actions
336 lines (296 loc) · 11.1 KB
/
features.html
File metadata and controls
336 lines (296 loc) · 11.1 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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Stanford Screenomics - Features</title>
<style>
/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: "Montserrat", "Open Sans", "Lato", "Helvetica Neue", Arial, sans-serif;
color: #111;
background: #fff;
}
/* Navbar */
header {
background: #fff;
padding: 1rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.logo {
display: flex;
align-items: center;
font-size: 1.5rem;
font-weight: bold;
color: #8C1515;
gap: 0.5rem; /* space between image and text */
}
.logo-img {
width: 40px; /* adjust size as needed */
height: 40px;
object-fit: contain;
}
nav ul {
list-style: none;
display: flex;
gap: 2rem;
position: relative;
}
nav ul li { position: relative; }
nav ul li a {
text-decoration: none;
color: #111;
font-weight: 500;
padding: 0.5rem;
transition: color 0.3s;
}
nav ul li a:hover { color: #8C1515; }
nav ul li ul {
display: none;
position: absolute;
top: 100%;
left: 0;
background: #fff;
border: 1px solid #8C1515;
border-radius: 5px;
list-style: none;
min-width: 150px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
nav ul li:hover ul { display: block; }
nav ul li ul li a {
display: block;
padding: 0.5rem 1rem;
color: #111;
}
nav ul li ul li a:hover {
background: #8C1515;
color: #fff;
}
/* Features Section */
.features {
padding: 4rem 2rem;
max-width: 1000px;
margin: 0 auto;
}
.features h2 {
font-size: 2.5rem;
text-align: center;
margin-bottom: 2rem;
color: #8C1515;
}
/* Accordion */
.accordion {
background-color: #f9f9f9;
color: #8C1515;
cursor: pointer;
padding: 1rem;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 1.1rem;
font-weight: bold;
transition: background-color 0.3s;
border-bottom: 1px solid #ddd;
margin-top: 0.5rem;
}
.accordion:hover {
background-color: #f1f1f1;
}
.panel {
padding: 1rem;
display: none;
overflow: hidden;
background: #fff;
line-height: 1.6;
}
.panel h4 {
margin-top: 1rem;
color: #8C1515;
}
/* Footer */
footer {
background: #111;
color: white;
text-align: center;
padding: 2rem 1rem;
font-size: 0.9rem;
}
/* Floating top-right buttons */
.top-right-buttons {
position: fixed;
top: 120px;
right: 20px;
display: flex;
flex-direction: column;
gap: .75rem;
z-index: 1000; /* ensures it’s above other content */
}
.floating-btn {
background-color: #53565A;
color: white;
padding: 0.5rem 1rem;
text-decoration: none;
border-radius: 9999px;
font-weight: bold;
font-size: 0.9rem;
text-align: center;
transition: background-color 0.2s ease;
opacity: 0.7;
}
.floating-btn:hover {
background-color: #53565A;
opacity: 1; /* fully opaque on hover */
}
/* Responsive */
@media (max-width: 768px) {
.features h2 { font-size: 2rem; }
.features { padding: 2rem 1rem; }
}
</style>
</head>
<body>
<!-- Navbar -->
<header>
<div class="logo">
<img src="assets/logo.png" alt="Logo" class="logo-img">
Stanford Screenomics
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li>
<a href="#">Resources ▾</a>
<ul>
<li>
<a href="https://github.com/StanfordScreenomics/Platform" target="_blank" style="display:inline-flex; align-items:center; gap:0.25rem; white-space:nowrap;">
Documentation
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M10 2.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-1 0V3.707L5.854 10.354a.5.5 0 1 1-.708-.708L12.293 3H10.5a.5.5 0 0 1-.5-.5z"/>
<path fill-rule="evenodd" d="M13 13H3V3h5a.5.5 0 0 1 0 1H4v9h9v-4a.5.5 0 0 1 1 0v5a.5.5 0 0 1-.5.5z"/>
</svg>
</a>
</li>
<li><a href="publication.html" class="active">Publication</a></li>
</ul>
</li>
<li>
<a href="#">Framework ▾</a>
<ul>
<li><a href="features.html" class="active">Features</a></li>
<li>
<a href="simulator.html" target="_blank" rel="noopener noreferrer">
Simulator
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M10 2.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-1 0V3.707L5.854 10.354a.5.5 0 1 1-.708-.708L12.293 3H10.5a.5.5 0 0 1-.5-.5z"/>
<path fill-rule="evenodd" d="M13 13H3V3h5a.5.5 0 0 1 0 1H4v9h9v-4a.5.5 0 0 1 1 0v5a.5.5 0 0 1-.5.5z"/>
</svg>
</a>
</li>
</ul>
</li>
<li><a href="team.html">Our Team</a></li>
<li><a href="index.html#contact">Contact</a></li>
</ul>
</nav>
</header>
<!-- Features Section -->
<section class="features">
<h2>Stanford Screenomics Features</h2>
<button class="accordion">Overview</button>
<div class="panel">
<p>The Stanford Screenomics platform is an open-source, customizable framework designed for unobtrusive multimodal data collection from smartphones. It captures a wide range of digital trace data, enabling researchers to explore behavioral patterns and health insights effectively.</p>
</div>
<button class="accordion">Key Features</button>
<div class="panel">
<h4>1. Modular Architecture</h4>
<p><strong>Customizable Modules:</strong> The platform includes nine distinct data collection modules, each tailored to capture specific types of data. Researchers can choose which modules to activate based on their study requirements.</p>
<p><strong>Dynamic Configuration:</strong> Researchers can modify parameters such as sampling frequency and data transfer methods without extensive coding knowledge.</p>
<h4>2. Data Collection Capabilities</h4>
<p><strong>Screenshots:</strong> Captures screenshots at user-defined intervals, logging timestamps and saving images.</p>
<p><strong>App Usage:</strong> Monitors currently active apps and transitions.</p>
<p><strong>User Interactions:</strong> Logs actions like clicks, scrolls, and gestures.</p>
<p><strong>Location Tracking:</strong> Collects GPS coordinates at customizable intervals.</p>
<p><strong>Physical Activity Tracking:</strong> Records step counts at intervals.</p>
<p><strong>Battery Monitoring:</strong> Tracks levels and charging events.</p>
<p><strong>Network Connectivity:</strong> Monitors Wi-Fi/cellular connectivity.</p>
<p><strong>Device Specifications:</strong> Collects device info during account creation.</p>
</div>
<button class="accordion">Real-Time Monitoring</button>
<div class="panel">
<p><strong>Dashboard Application:</strong> Real-time participant data monitoring.</p>
<p><strong>Ticker Collection:</strong> Streamlined overview of activity with inactivity flags.</p>
</div>
<button class="accordion">Data Storage and Security</button>
<div class="panel">
<p><strong>HIPAA-Compliant Storage:</strong> Uses Firestore + GCS for secure storage.</p>
<p><strong>User Authentication:</strong> Firebase Authentication for secure access.</p>
<p><strong>Dynamic Parameter Updates:</strong> Real-time adjustments without recompilation.</p>
</div>
<button class="accordion">Open-Source Availability</button>
<div class="panel">
<p><strong>Community Contributions:</strong> Extension points for developers.</p>
<p><strong>Source Code Access:</strong> Source code publicly available for adaptation.</p>
</div>
<button class="accordion">User Empowerment</button>
<div class="panel">
<p><strong>Informed Consent:</strong> Participants are fully informed and can pause/resume data collection anytime.</p>
<p><strong>Privacy Controls:</strong> Manage permissions easily (e.g., location, screenshots).</p>
</div>
<button class="accordion">Data Analysis and Insights</button>
<div class="panel">
<p><strong>Granular Data Collection:</strong> Captures moment-to-moment interactions.</p>
<p><strong>Cross-Validation:</strong> Combines multiple data sources for robust conclusions.</p>
</div>
<button class="accordion">Performance Metrics</button>
<div class="panel">
<p><strong>Resource Efficiency:</strong> Low CPU/RAM impact during data collection.</p>
<p><strong>Battery Conservation:</strong> Strategies to minimize power drain.</p>
</div>
<button class="accordion">Conclusion</button>
<div class="panel">
<p>The Stanford Screenomics platform is a significant advancement in digital trace data collection, offering researchers a versatile tool with modular design, real-time monitoring, and strong privacy safeguards.</p>
</div>
</section>
<!-- Footer -->
<footer>
© 2025 Stanford Screenomics. All rights reserved.
</footer>
<!-- Floating buttons -->
<div class="top-right-buttons">
<a href="https://thechangelab.stanford.edu/" target="_blank" class="floating-btn">
The Change Lab
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M10 2.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-1 0V3.707L5.854 10.354a.5.5 0 1 1-.708-.708L12.293 3H10.5a.5.5 0 0 1-.5-.5z"/>
<path fill-rule="evenodd" d="M13 13H3V3h5a.5.5 0 0 1 0 1H4v9h9v-4a.5.5 0 0 1 1 0v5a.5.5 0 0 1-.5.5z"/>
</svg>
</a>
<a href="https://screenomics.stanford.edu/" target="_blank" class="floating-btn">
Human Screenome Project
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M10 2.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-1 0V3.707L5.854 10.354a.5.5 0 1 1-.708-.708L12.293 3H10.5a.5.5 0 0 1-.5-.5z"/>
<path fill-rule="evenodd" d="M13 13H3V3h5a.5.5 0 0 1 0 1H4v9h9v-4a.5.5 0 0 1 1 0v5a.5.5 0 0 1-.5.5z"/>
</svg>
</a>
</div>
<!-- Accordion Script -->
<script>
const acc = document.getElementsByClassName("accordion");
for (let i = 0; i < acc.length; i++) {
acc[i].addEventListener("click", function() {
this.classList.toggle("active");
const panel = this.nextElementSibling;
panel.style.display = (panel.style.display === "block") ? "none" : "block";
});
}
</script>
</body>
</html>