forked from aurbano/smart-area
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
108 lines (103 loc) · 4.52 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
103
104
105
106
107
108
<!doctype html>
<!--[if lt IE 7]> <html class1="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js" lang="en">
<!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="Description" content="SmartArea brings autocomplete, dropdowns, mentions and other goodies to html textareas">
<meta name="fragment" content="!">
<title>SmartArea - textareas 2.0</title>
<link href='//fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Bitter:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<style>
h1 {
font-family: 'Bitter', serif;
}
.jumbotron {
background-image: linear-gradient(-90deg, #7E14FF, #14C4FF);
color: white;
}
.navbar-default {
background-color: #fefefe;
background-color: rgba(255, 255, 255, 0.7);
border-color: #fcfcfc;
}
</style>
</head>
<body>
<header class="header">
<div class="navbar navbar-default navbar-fixed-top">
<div class="container">
<ul class="nav navbar-nav">
<li>
<a href="https://github.com/aurbano/smart-area#getting-started"><i class="fa fa-magic"></i> Getting Started</a>
</li>
<li>
<a href="https://github.com/aurbano/smart-area#api"><i class="fa fa-book"></i> API</a>
</li>
</ul>
<ul class="nav navbar-nav pull-right">
<li>
<a href="https://github.com/aurbano/smart-area"><i class="fa fa-github"></i> View on GitHub</a>
</li>
</ul>
</div>
</div>
</header>
<div role="main">
<div class="jumbotron">
<div class="container" style="margin-top: 50px; margin-bottom: 20px;">
<h1><i class="fa fa-university"> </i><b>smart</b>area</h1>
<p class="tagline">Autocomplete, dropdowns, mentions and other goodies for html textareas</p>
<p>
<a href="https://github.com/aurbano/smart-area/releases" class="btn btn-primary btn-large"><i class="fa fa-download"></i> Download</a>
<a href="https://github.com/aurbano/smart-area" class="btn btn-primary btn-large"><i class="fa fa-github"></i> View on GitHub</a>
</p>
</div>
</div>
</div>
<div class="divider"></div>
<div class="main container">
<div class="intro">
<div class="row">
<div class="col-md-4">
<h2 class="text-center" style="color:#3495CD"><i class="fa fa-bullhorn"></i> What?</h2>
<p>smart-area is an <a href="http://angularjs.org">AngularJS</a> module that allows you to easily add huge interactivity to your textareas.</p>
</div>
<div class="col-md-4">
<h2 class="text-center" style="color:#3656FA"><i class="fa fa-child"></i> Features</h2>
<ul>
<li>Word highlighting (syntax, keywords... ) with support for multiple sets, and regexp</li>
<li>Autocomplete</li>
<li>Dropdown suggestions (mention users after typing @, hashtag support, keywords... )</li>
<li>Minimal configuration required, but highly customizable if necessary</li>
</ul>
</div>
<div class="col-md-4">
<h2 class="text-center" style="color:#592EFA"><i class="fa fa-gear"></i> Flexibility</h2>
<p>All the features are opt-in via configuration, so you get exactly what you want. If it's not there yet, just drop <a href="https://github.com/aurbano/smart-area/issues">an issue</a>!</p>
</div>
</div>
</div>
<hr>
<div class="example">
<div class="row">
<h1 class="col-md-12">How it works</h1>
<iframe src="http://embed.plnkr.co/tu74kf/preview" height="400" width="100%" style="border:solid 1px #efefef; box-shadow:rgba(0,0,0,0.1) 0 0 20px"></iframe>
<hr>
<iframe src="http://embed.plnkr.co/ABGPRIshuDk3mDcNgZzg/preview" height="400" width="100%" style="border:solid 1px #efefef; box-shadow:rgba(0,0,0,0.1) 0 0 20px"></iframe>
</div>
</div>
<hr>
<footer class="footer text-muted text-center" style="margin-bottom:20px">
<p>Brought to you by <a href="http://github.com/aurbano">Alejandro U. Alvarez</a></p>
</footer>
</div>
</body>
</html>