_jade/zh/download-theme.jade (92 lines of code) (raw):

extends ../layouts/basic block extra_head title 主题下载 - Apache ECharts link(rel='stylesheet', type='text/css', href='#{cdnPayRoot}/#{ecWWWLang}/vendors/prettify/prettify.css?_v_=#{cdnPayVersion}') block content nav(class='navbar navbar-default navbar-fixed-top') include ../components/nav .page-main .page-info #themes.container h1 主题下载 p 让你的图表整体换个装,除了官方提供的主题之外,还可以定制你自己的主题 p.page-info-echarts Apache ECharts<sup>TM</sup> .page-content.container#themes .row each themeName, idx in theme .col-sm-4.theme a(class="download-theme" href="#{cdnPayRoot}/#{ecWWWLang}/js/vendors/echarts/theme/#{themeName}.js?_v_=#{cdnPayVersion}" download="#{themeName}.js" target="_blank") img(src="#{cdnPayRoot}/#{ecWWWLang}/asset/theme/thumb/#{themeName}.png?_v_=#{cdnPayVersion}" alt="") p #{themeName} section.section-bg#theme-configure-section .container #theme-builder a.btn.btn-main.btn-thirdary.more-btn(href="#{host}/zh/theme-builder.html") 定制主题 p 可在线编辑定义主题并进行下载 section .container #theme-example h4 主题使用示例 pre(class="html"). &lt;script src="echarts.js"&gt;&lt;/script&gt; &lt;!-- 引入 vintage 主题 --&gt; &lt;script src="theme/vintage.js"&gt;&lt;/script&gt; &lt;script&gt; // 第二个参数可以指定前面引入的主题 var chart = echarts.init(document.getElementById('main'), 'vintage'); chart.setOption({ ... }); &lt;/script&gt; include ../components/footer block extra_js script(src="#{cdn3rdRoot.prettifyJS}") script(src="#{cdn3rdRoot.prettifyCSSHandlerJS}") script. document.getElementById('nav-download').className = 'active'; $('pre').addClass('prettyprint'); prettyPrint(); $('.download-theme').click(function (e) { var ctx = this; if (ctx.origin === location.origin) { return; } // cross origin e.preventDefault(); function onload(res) { var download = ctx.getAttribute('download'); var url; if (res && res instanceof Blob) { if (window.navigator.msSaveOrOpenBlob) { if (window.navigator.msSaveOrOpenBlob(res, download)) { return; } } else { url = URL.createObjectURL(res); } } var a = document.createElement('a'); a.href = url || ctx.href; a.target = ctx.target; a.setAttribute('download', download); a.style.display = 'none'; document.body.appendChild(a); a.click(); document.body.removeChild(a); url && URL.revokeObjectURL(url); } if ((typeof URL !== 'undefined' && typeof URL.createObjectURL === 'function') || window.navigator.msSaveOrOpenBlob) { var xhr = new XMLHttpRequest(); xhr.open('GET', ctx.href); xhr.responseType = 'blob'; xhr.onload = function () { onload(this.status === 200 && this.response); }; xhr.onerror = function (e) { console.error('failed to download theme', e); }; xhr.send(); } else { onload(); } });