-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
102 lines (96 loc) · 4.7 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en" style="background-color: #50655e;">
<head>
<title>End to End Testing | Neodigm 55 Typescript</title>
<meta name="viewport" content="initial-scale=1, maximum-scale=2, minimum-scale=1, width=device-width, height=device-height"/>
<meta charset="utf-8"/>
<link href="css/tttailwind.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lobster+Two|Roboto+Condensed&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/arcanus55/neodigm55@gh-pages/dist/neodigm55_v3_0.min.css"></link>
<script src="https://cdn.jsdelivr.net/gh/arcanus55/neodigm55@gh-pages/dist/neodigm55_v3_0.min.js"></script>
<!-- (c) 1992-2032 🗝️ www.theScottKrause.com -->
</head>
<body>
<section class="l-vid">
<header>
<h1>Demonstrated End to End QA</h1>
<h2>Software Quality achieved through End to End testing, including responsive, API integration, visual regression, and smoke.</h2>
</header>
<video width="1280" height="720" preload="auto" controls muted autoplay poster="./usb/privacy/paranoid/digital_jump_bag_shtf.jpg"
style="background-color: transparent;">
<source src="./cypress/videos/tasks_e2e/task_create_account.e2e.spec.js.mp4" type="video/mp4">
</video>
</section>
<section style="margin: 16px 12%">
<ul style="color: #fff; font-size: 24px;">
<li>Automatically capture a video when a test fails</li>
<li>Apply optional configuration files via the command line. This will allow us to change environments easily (requires v3.6)</li>
<li>Test globals like system_output</li>
<li>Test values persisted in the Vuex / Redux store</li>
<li>Create custom reusable, and chainable commands, such as cy.signIn() or cy.turnOnFeature()</li>
<li>Test responsive layout behavior</li>
<li>Accessibility Audit</li>
</ul>
<br>
</section>
<nav class="h-center" style="text-align: center">
<br>
<a id="js-powered-by--sm" href="https://www.theScottKrause.com/emerging_tech/neodigm55_ux_library/?poweredby=Neodigm55"
target="_blank" rel="noopener" tabindex="0" aria-haspopup="true"
data-n55-enchanted-cta-hover-an="true"
data-n55-enchanted-cta
data-n55-enchanted-cta-ambient="emit"
data-n55-enchanted-cta-dont-touch="true"
data-n55-enchanted-cta-shape-off="false"
data-n55-enchanted-cta-size="medium"
data-n55-flash-theme="marcom"
data-n55-theme="night"
data-n55-toast="Powered by ✨ Neodigm 55"
data-n55-wired4sound-click="7"
><span data-n55-wired4sound-mouseover="3">Powered by ✨ Neodigm 55</span>
<span>
<neodigm-marquee data-n55-marquee-text=" Neodigm 55 is different. It's an eclectic UX micro-library. The lightweight components come together in a unique way that makes your website playful, fun, and bounce-proof. Because it’s so easy to get started it is the perfect solution for quick landing pages, business accelerators, and event sites. Enhanced CTA Buttons command attention and have a mind of their own. They drive conversions with ambient and interactive animation. Neodigm Toast is a super convenient way to show a quick message without disrupting the user’s flow. It just pops from the bottom of the screen, displays a message, and then animates off. Parallax scrolling is a web design technique in which the website background remains fixed while the foreground moves. This results in a 3D effect as visitors scroll down the site, adding a sense of depth and creating a more immersive browsing experience. Neodigm 55 is a small, fast, batteries included, HTML first, low code, responsive, analytics friendly, opinionated, accessible, tweaked to oblivion, future-proof, business accelerating, UX solution. "
data-n55-flash-theme="party"
data-n55-wired4sound-click="5" data-n55-wired4sound-mouseover="3"
data-n55-marquee-size="small" data-n55-marquee-direction="false"><pre data-n55-theme="white"></pre></neodigm-marquee>
</span>
</a>
<br>
<br>
</nav>
<style>
/* Three.js 🚀 TypeScript 🍭 WASM ✨ PWA Infographic */
header {
text-align: center;
}
header h1 {
color: #fff;
font-size: 26px;
margin: 6px;
QQQQfont-family: 'Lobster Two', cursive;
}
header h2 {
color: #fff;
font-size: 16px;
margin: 4px;
font-family: 'Roboto Condensed', sans-serif;
}
.l-vid {
margin: 8px auto;
padding: 0;
width: 1284px;
}
@media only screen
and (min-width: 375px)
and (max-width: 667px){ /* small *//* mobile 44.875em */
}
@media only screen
and (min-width: 668px)
and (max-width: 1064px){ /* medium *//* tablet 47.750em */
}
@media only screen
and (min-width: 1065px){ /* large *//* laptop 66.563em */
}
</style>
</body>
</html>