js 氣泡提示
阿新 • • 發佈:2018-03-12
exc 初始化 tex com 年份 tst shee 相關 and
<link href="~/js/bootstrap-tour-standalone.min.css" rel="stylesheet" type="text/css" /> <script src="~/js/bootstrap-tour-standalone.js"></script>
bootstrap-tour-standalone.min.css
bootstrap-tour-standalone.js
var tour = new Tour({ storage: false, //相關可選項目值:window.localStorage(缺省), window.sessionStorage ,false 或者自定義objsteps: [{ element: ‘#btn1‘, title: ‘歷史趨勢圖‘, content: ‘點擊標題或圖片可進入歷史趨勢圖的頁面, 橫坐標代表年份,縱坐標代表文件數量。可按時間段檢索各年中三個關鍵詞出現的文件數量,以可視化數據形態展現。‘, backdrop: true, }, { element: ‘#exportArchive‘, title: ‘導出鍵‘, content: ‘點選各行源數據前的復選框並單擊“導出”按鈕即可將源數據以excel文件形式批量導出。‘, backdrop: true, }] }); tour.init(); //初始化這個向導,這個必須滴 tour.start(); //開始運行向導
js 氣泡提示