123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- var version = '2.2.1';
- var sp = location.href.lastIndexOf('/');
- var ep = location.href.lastIndexOf('.html');
- var curPage = sp < ep ? location.href.slice(sp + 1, ep) : 'index';
- var enVersion = (location.hash && location.hash.indexOf('-en') != -1)
- || location.href.indexOf('-en') != -1;
- var activeClass = {};
- var loc = {};
- var forkWidth = 149;
- curPage = curPage.replace('-en', '');
- var isExample = false;
- switch (curPage) {
- case 'index' :
- activeClass[curPage] = 'active';
- loc[curPage] = '.';
- loc.feature = './doc';
- loc.example = './doc';
- loc.doc = './doc';
- loc.about = './doc';
- loc.changelog = './doc';
- loc.start = './doc';
- loc.img = './doc';
- break;
- case 'feature' :
- case 'example' :
- case 'doc' :
- case 'about' :
- case 'changelog' :
- case 'start' :
- activeClass[curPage] = 'active';
- loc.index = '..';
- break;
- default :
- isExample = true;
- forkWidth = 60;
- activeClass['example'] = 'active';
- var extSub = location.href.indexOf('extension') != -1 ? '../' : '';
- loc.index = extSub + '../..';
- loc.feature = extSub + '../../doc';
- loc.example = extSub + '../../doc';
- loc.doc = extSub + '../../doc';
- loc.about = extSub + '../../doc';
- loc.changelog = extSub + '../../doc';
- loc.start = extSub + '../../doc';
- loc.img = extSub + '../../doc';
- break;
- }
- $('#head')[0].innerHTML =
- '<div class="container">'
- + '<div class="navbar-header">'
- + '<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">'
- + '<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="http://echarts.baidu.com/index'
- + (enVersion ? '-en': '')
- + '.html">ECharts</a>'
- + '</div>'
- + '<a href="https://github.com/ecomfe/echarts" target="_blank">'
- + '<img id="fork-image" style="position:absolute;top:0;right:0;border:0;z-index:1000;width:' + forkWidth + 'px" src="'+ (loc.img || '.') + '/asset/img/fork.png" alt="Fork me on GitHub">'
- + '</a>'
- + '<div class="navbar-collapse collapse" id="nav-wrap">'
- + '<ul class="nav navbar-nav navbar-right" id="nav" style="max-width:100%;">'
- + (enVersion
- ? ('<li class="' + (activeClass.index || '') + '"><a href="' + (loc.index || '.') + '/index-en.html">Home</a></li>'
- + '<li class="' + (activeClass.feature || '') + '"><a href="' + (loc.feature || '.') + '/feature-en.html">Feature</a></li>'
- + '<li class="' + (activeClass.example || '') + '"><a href="' + (loc.example || '.') + '/example-en.html">Example</a></li>'
- + '<li class="' + (activeClass.doc || '') + '"><a href="' + (loc.doc || '.') + '/doc-en.html">API & Doc</a></li>'
- )
- : ('<li class="' + (activeClass.index || '') + '"><a href="' + (loc.index || '.') + '/index.html">首页</a></li>'
- + '<li class="' + (activeClass.feature || '') + '"><a href="' + (loc.feature || '.') + '/feature.html">特性</a></li>'
- + '<li class="' + (activeClass.example || '') + '"><a href="' + (loc.example || '.') + '/example.html">实例</a></li>'
- + '<li class="' + (activeClass.doc || '') + '"><a href="' + (loc.doc || '.') + '/doc.html">文档</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 class="divider"></li>'
- + '<li class="dropdown-header">外部资源</li>'
- + '<li><a href="#"></a></li>'
- + '<li><a href="#"></a></li>'
- + '</ul>'
- + '</li>'
- */
- + '<li class="dropdown">'
- + '<a href="#" class="dropdown-toggle" data-toggle="dropdown">' + (enVersion ? 'Download' : '下载') + '<b class="caret"></b></a>'
- + '<ul class="dropdown-menu">'
- + '<li><a href="http://echarts.baidu.com/build/echarts-' + version + '.zip"> echarts-' + version + ' (from Baidu)</a></li>'
- + '<li><a href="https://github.com/ecomfe/echarts/archive/' + version + '.zip"> echarts-' + version + ' (from GitHub)</a></li>'
- + '<li><a href="http://echarts.baidu.com/build/echarts-m-1.0.0.zip"> echarts-m-1.0.0 (beta)</a></li>'
- + '<li><a href="http://echarts.baidu.com/x/build/echarts-x-0.1.0.zip"> echarts-x-0.1.0 </a></li>'
- + '<li class="divider"></li>'
- + (enVersion
- ? '<li><a href="http://ecomfe.github.io/echarts/doc/changelog-en.html">Changelog</a></li>'
- : '<li><a href="http://echarts.baidu.com/doc/changelog.html">Changelog</a></li>'
- )
- + '</ul>'
- + '</li>'
- //+ '<li><a href="http://echarts.baidu.com/build/echarts-' + version + '.rar">下载</a></li>'
- + (enVersion
- ? ('<li class="' + (activeClass.about || '') + '"><a href="' + (loc.about || '.') + '/about-en.html">About Us</a></li>')
- : ('<li class="' + (activeClass.about || '') + '"><a href="' + (loc.about || '.') + '/about.html">关于我们</a></li>')
- )
- + '<li><a href="javascript:void()" onclick="changeVersion()">' + (enVersion ? '中文' : 'English') + '</a></li>'
- + '</ul>'
- + '</div><!--/.nav-collapse -->'
- + '</div>';
-
- function back2Top() {
- $("body,html").animate({scrollTop:0},1000);
- return false;
- }
- function changeVersion() {
- if (!isExample) {
- window.location = curPage + (enVersion ? '' : '-en') + '.html'
- }
- else {
- window.location = curPage + '.html' + (enVersion ? '' : '#-en');
- if (enVersion) {
- window.location.hash = window.location.hash.replace('-en', '');
- }
- window.location.reload();
- }
- }
- $('#footer')[0].style.marginTop = '50px';
- $('#footer')[0].innerHTML =
- '<div class="container">'
- + '<div class="row" style="padding-bottom:20px;">'
- + '<div class="col-md-3">'
- + '<p>' + (enVersion ? 'Link' : 'ECharts团队出品') + '</p>'
- + '<ul>'
- + '<li><a href="http://tushuo.baidu.com/" target="_blank">Baidu 图说</a></li>'
- + '<li><a href="' + (enVersion ? "http://ecomfe.github.io/echarts-x" : 'http://echarts.baidu.com/x/doc') + '" target="_blank">ECharts-X</a></li>'
- + '<li><a href="http://ecomfe.github.io/zrender/index.html" target="_blank">ZRender</a></li>'
- + '<li><a href="https://github.com/pissang/qtek" target="_blank">QTEK</a></li>'
- + '</ul>'
- + '</div>'
- + '<div class="col-md-3">'
- + '<p>' + (enVersion ? 'More' : '更多') + '</p>'
- + '<ul>'
- + '<li><a href="https://github.com/ecomfe/echarts/blob/master/LICENSE.txt" target="_blank">License</a></li>'
- + '<li><a href="http://echarts.baidu.com/doc/changelog' + (enVersion ? '-en' : '') + '.html" target="_blank">Changelog</a></li>'
- + '<li><a href="http://efe.baidu.com" target="_blank">Baidu EFE</a></li>'
- + '<li><a href="http://www.oschina.net/p/echarts" target="_blank">' + (enVersion ? 'Open Source China' : '开源中国') + '</a></li>'
- + '</ul>'
- + '</div>'
- + '<div class="col-md-3">'
- + '<p>' + (enVersion ? 'Contact Us' : '联系我们') + '</p>'
- + '<ul>'
- + '<li><a href="mailto:echarts(a)baidu.com">echarts(a)baidu.com</a></li>'
- + '<li><a href="https://github.com/ecomfe/echarts" target="_blank"> Github</a></li>'
- + '<li><a href="http://weibo.com/echarts" target="_blank">Weibo</a></li>'
- + '</ul>'
- + '</div>'
- + '<div class="col-md-3 flogo">'
- + '<a href="javascript:void(0)" onclick="back2Top()" title="' + (enVersion ? 'Back to top' : '回到顶部') + '"><img src="'+ (loc.img || '.')+ '/asset/img/echarts-logo2.png" alt="ECharts"/></a>'
- + '</div>'
- + '</div>'
- + '<p class="pull-right"><a href="javascript:void(0)" onclick="back2Top()" >Back to top</a></p>'
- + '<p>© 2015 <a href="http://www.baidu.com/" target="_blank">Baidu</a></p>'
- + '</div>';
- if (document.location.href.indexOf('local') == -1) {
- var _bdhmProtocol = (("https:" == document.location.protocol) ? " https://" : " http://");
- document.write(unescape("%3Cscript src='" + _bdhmProtocol + "hm.baidu.com/h.js%3Fb78830c9a5dad062d08b90b2bc0cf5da' type='text/javascript'%3E%3C/script%3E"));
- }
- function fixFork () {
- var navMarginRight = 0;
- var bodyWidth = document.body.offsetWidth;
- var contnetWidth = $('#nav-wrap')[0].offsetWidth;
- if (bodyWidth < 1440) {
- navMarginRight = 150 - (bodyWidth - contnetWidth) / 2;
- }
- $('#nav')[0].style.marginRight = navMarginRight + 'px';
- $('#fork-image')[0].style.width = (document.body.offsetWidth < 768 ? 1 : forkWidth) + 'px';
- };
- fixFork();
- $(window).on('resize', fixFork);
|