-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
19,416 additions
and
0 deletions.
There are no files selected for viewing
459 changes: 459 additions & 0 deletions
459
chrome/samples/chrome-extensions/ibkrassistant/css/bootstrap-theme.css
Large diffs are not rendered by default.
Oops, something went wrong.
7,098 changes: 7,098 additions & 0 deletions
7,098
chrome/samples/chrome-extensions/ibkrassistant/css/bootstrap.css
Large diffs are not rendered by default.
Oops, something went wrong.
Empty file.
Binary file added
BIN
+19.8 KB
chrome/samples/chrome-extensions/ibkrassistant/fonts/glyphicons-halflings-regular.eot
Binary file not shown.
229 changes: 229 additions & 0 deletions
229
.../samples/chrome-extensions/ibkrassistant/fonts/glyphicons-halflings-regular.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+40.3 KB
chrome/samples/chrome-extensions/ibkrassistant/fonts/glyphicons-halflings-regular.ttf
Binary file not shown.
Binary file added
BIN
+22.7 KB
chrome/samples/chrome-extensions/ibkrassistant/fonts/glyphicons-halflings-regular.woff
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2,002 changes: 2,002 additions & 0 deletions
2,002
chrome/samples/chrome-extensions/ibkrassistant/js/bootstrap.js
Large diffs are not rendered by default.
Oops, something went wrong.
9 changes: 9 additions & 0 deletions
9
chrome/samples/chrome-extensions/ibkrassistant/js/bootstrap.min.js
Large diffs are not rendered by default.
Oops, something went wrong.
9,555 changes: 9,555 additions & 0 deletions
9,555
chrome/samples/chrome-extensions/ibkrassistant/js/jquery.js
Large diffs are not rendered by default.
Oops, something went wrong.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<!DOCTYPE html> | ||
<html tabindex="1"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title></title> | ||
<link rel="stylesheet" type="text/css" href="css/bootstrap.css" /> | ||
<link rel="stylesheet" type="text/css" href="css/bootstrap-theme.css" /> | ||
<link rel="stylesheet" type="text/css" href="css/popup.css" /> | ||
</head> | ||
<body> | ||
|
||
<div id="welcome"> | ||
<div class="jumbotron"> | ||
<h1>欢迎使用美股期权模拟交易系统</h1> | ||
<p>本系统采用浏览器插件的形式,让您模拟下单,自动计算盈亏,所有数据保存在本地浏览器中。</p> | ||
<p><a class="btn btn-primary btn-lg" role="button">开始使用...</a></p> | ||
</div> | ||
</div> | ||
<div id="main"> | ||
<nav class="navbar navbar-default" role="navigation"> | ||
<div class="navbar-header"> | ||
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"> | ||
<span class="sr-only">Toggle navigation</span> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
</button> | ||
<a class="navbar-brand" href="#">Kylin</a> | ||
</div> | ||
|
||
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> | ||
<ul class="nav navbar-nav"> | ||
<li class="active"><a href="#">账户</a></li> | ||
<li><a href="#">设置</a></li> | ||
<li><a href="#">自选股<span class="badge">14</span></a></li> | ||
<li class="dropdown"> | ||
<a href="#" class="dropdown-toggle" data-toggle="dropdown">操作 <b class="caret"></b></a> | ||
<ul class="dropdown-menu"> | ||
<li><a href="#">买入</a></li> | ||
<li><a href="#">卖出</a></li> | ||
<li class="divider"></li> | ||
<li><a href="#">成交记录</a></li> | ||
<li class="divider"></li> | ||
<li><a href="#">盈亏</a></li> | ||
</ul> | ||
</li> | ||
</ul> | ||
<form class="navbar-form navbar-left" role="search"> | ||
<div class="form-group"> | ||
<input type="text" class="form-control" placeholder="正股代码"> | ||
</div> | ||
<button type="submit" class="btn btn-default">查询</button> | ||
</form> | ||
</div> | ||
</nav> | ||
</div> | ||
|
||
|
||
|
||
<script src="js/jquery.js"></script> | ||
<script src="js/bootstrap.js"></script> | ||
<script src="js/popup.js"></script> | ||
</body> | ||
</html> |