This repository has been archived by the owner on Mar 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
index.html
78 lines (71 loc) · 4.07 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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>PhosphorJS</title>
<meta name="description" content="PhosphorJS">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<link rel="icon" href="favicon.ico">
<link href='https://fonts.googleapis.com/css?family=Lato:400italic,300,300italic' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Nunito:300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/normalize.min.css">
<link rel="stylesheet" href="css/main.css">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<script>window.html5 || document.write('<script src="js/vendor/html5shiv.js"><\/script>')</script>
<![endif]-->
</head>
<body>
<div class="header-container">
<header class="wrapper clearfix">
<a href="index.html">
<div class="logo"></div>
<h1 class="title">PhosphorJS</h1>
</a>
<nav>
<ul>
<li><a href="https://github.com/phosphorjs/">GitHub</a></li>
<li><a href="docs.html">Docs</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
</header>
</div>
<div class="main-container">
<div class="main wrapper clearfix">
<article>
<h2>Robust</h2>
<p>PhosphorJS provides a rich set of widgets, layouts, events, and data structures. These enable developers to construct advanced, production-quality, desktop-like web applications that would be otherwise impossible using CSS alone.
<h2>Modular</h2>
<p>PhosphorJS libraries cover a range of topics including message passing, signaling, attached properties, data structures, widgets, and layouts. </p>
<p>Each is separately installable via NPM, allowing developers to use them individually, according to their needs.</p>
<h2>Performant</h2>
<h3>Speed matters.</h3>
<p>To maintain a 60fps refresh rate in response to user interaction, an application has ~16ms to perform all logic calculations, DOM manipulations, reflows, and repaints. Meeting this threshold is challenging for sizable, multi-tab, single-page, applications.</p>
<p>PhosphorJS widgets and layouts are written with efficiency in mind, minimizing reflows whenever possible and consistently achieving sub-millisecond layout times. </p>
<p>This leaves as much of the time-slice as possible to be used for the execution of business logic.</p>
<h2>Extensible</h2>
<p>PhosphorJS plays well with existing web frameworks and libraries. It is not an opinionated and rigid toolset that constrains the developer to a specific model or data flow.</p>
<p>Rather, it allows the developer to build high-performance user interfaces with well-structured widget hierarchies in a flexible manner.</p>
</article>
<aside>
<div class="logo"></div>
<h2>PhosphorJS</h2>
<p>a collection of libraries <br>
designed to make it easy<br>
to build high-performance,<br>
pluggable, desktop-style <br>
web applications</p>
</aside>
</div> <!-- #main -->
</div> <!-- #main-container -->
<!-- <div class="footer-container">
<footer class="wrapper">
<h3>footer</h3>
</footer>
</div> -->
<script src="js/main.js"></script>
</body>
</html>