├── .example.env ├── Publish ├── change_logs.text ├── assets │ ├── setup_1.png │ ├── appstore.png │ ├── leave_wechat.png │ └── widget_helper.png ├── images │ ├── mobile.png │ ├── payment.jpg │ ├── appple-store.jpg │ └── logo.svg ├── plugins │ ├── slick │ │ ├── ajax-loader.gif │ │ ├── fonts │ │ │ ├── slick.eot │ │ │ ├── slick.ttf │ │ │ ├── slick.woff │ │ │ └── slick.svg │ │ ├── slick.css │ │ ├── slick-theme.css │ │ ├── README.markdown │ │ └── slick.min.js │ ├── themify-icons │ │ ├── fonts │ │ │ ├── themify.eot │ │ │ ├── themify.ttf │ │ │ └── themify.woff │ │ └── themify-icons.css │ ├── syotimer │ │ └── jquery.syotimer.min.js │ ├── fancybox │ │ └── jquery.fancybox.min.css │ └── aos │ │ └── aos.js ├── version.json ├── installer.js ├── 404.html ├── js │ └── script.js ├── payment.html ├── about.html ├── index.html └── installation.html ├── .gitignore ├── screenshots ├── sc_1.png └── sc_2.jpeg ├── jsconfig.json ├── .prettierrc ├── install-runtime.js ├── .eslintrc ├── package.json ├── LICENSE ├── README.md ├── encode.js ├── guide.html ├── pack.js ├── README.en-us.md ├── app.js └── Scripts └── 「小件件」开发环境.js /.example.env: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Publish/change_logs.text: -------------------------------------------------------------------------------- 1 | 2 | *修复 - 之前由于BMW更换新的接口,导致无法登录,现在经由BMW官方短信验证登录 3 | *优化 - 删除部分冗余代码 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | package-lock.json 3 | Widget.js 4 | .DS_File 5 | Dist/ 6 | example.json 7 | .env -------------------------------------------------------------------------------- /screenshots/sc_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opp100/bmw-scriptable-widgets/HEAD/screenshots/sc_1.png -------------------------------------------------------------------------------- /screenshots/sc_2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opp100/bmw-scriptable-widgets/HEAD/screenshots/sc_2.jpeg -------------------------------------------------------------------------------- /Publish/assets/setup_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opp100/bmw-scriptable-widgets/HEAD/Publish/assets/setup_1.png -------------------------------------------------------------------------------- /Publish/images/mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opp100/bmw-scriptable-widgets/HEAD/Publish/images/mobile.png -------------------------------------------------------------------------------- /Publish/images/payment.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opp100/bmw-scriptable-widgets/HEAD/Publish/images/payment.jpg -------------------------------------------------------------------------------- /Publish/assets/appstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opp100/bmw-scriptable-widgets/HEAD/Publish/assets/appstore.png -------------------------------------------------------------------------------- /Publish/assets/leave_wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opp100/bmw-scriptable-widgets/HEAD/Publish/assets/leave_wechat.png -------------------------------------------------------------------------------- /Publish/images/appple-store.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opp100/bmw-scriptable-widgets/HEAD/Publish/images/appple-store.jpg -------------------------------------------------------------------------------- /Publish/assets/widget_helper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opp100/bmw-scriptable-widgets/HEAD/Publish/assets/widget_helper.png -------------------------------------------------------------------------------- /Publish/plugins/slick/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opp100/bmw-scriptable-widgets/HEAD/Publish/plugins/slick/ajax-loader.gif -------------------------------------------------------------------------------- /Publish/plugins/slick/fonts/slick.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opp100/bmw-scriptable-widgets/HEAD/Publish/plugins/slick/fonts/slick.eot -------------------------------------------------------------------------------- /Publish/plugins/slick/fonts/slick.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opp100/bmw-scriptable-widgets/HEAD/Publish/plugins/slick/fonts/slick.ttf -------------------------------------------------------------------------------- /Publish/plugins/slick/fonts/slick.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opp100/bmw-scriptable-widgets/HEAD/Publish/plugins/slick/fonts/slick.woff -------------------------------------------------------------------------------- /Publish/plugins/themify-icons/fonts/themify.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opp100/bmw-scriptable-widgets/HEAD/Publish/plugins/themify-icons/fonts/themify.eot -------------------------------------------------------------------------------- /Publish/plugins/themify-icons/fonts/themify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opp100/bmw-scriptable-widgets/HEAD/Publish/plugins/themify-icons/fonts/themify.ttf -------------------------------------------------------------------------------- /Publish/plugins/themify-icons/fonts/themify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opp100/bmw-scriptable-widgets/HEAD/Publish/plugins/themify-icons/fonts/themify.woff -------------------------------------------------------------------------------- /Publish/version.json: -------------------------------------------------------------------------------- 1 | { 2 | "WIDGET_VERSION": "v2.2.1", 3 | "WIDGET_BUILD": "22050702", 4 | "BMW_USER_AGENT": "ios(15.4.1);bmw;2.3.0(13603)" 5 | } 6 | -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "checkJs": true 4 | }, 5 | "exclude": [ 6 | "node_modules", 7 | "**/node_modules/*" 8 | ] 9 | } -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 120, 3 | "tabWidth": 4, 4 | "semi": true, 5 | "bracketSpacing": false, 6 | "jsxBracketSameLine": true, 7 | "singleQuote": true, 8 | "arrowParents": "always", 9 | "trailingComma": "none" 10 | } 11 | -------------------------------------------------------------------------------- /install-runtime.js: -------------------------------------------------------------------------------- 1 | const FILE_MGR = FileManager[module.filename.includes('Documents/iCloud~') ? 'iCloud' : 'local'](); 2 | await Promise.all( 3 | [*|FILES|*].map(async (js) => { 4 | const REQ = new Request(`http://*|IP_ADDRESS|*/Scripts/${encodeURIComponent(js)}`); 5 | const RES = await REQ.load(); 6 | FILE_MGR.write(FILE_MGR.joinPath(FILE_MGR.documentsDirectory(), js), RES); 7 | }) 8 | ); 9 | FILE_MGR.remove(module.filename); 10 | Safari.open('scriptable:///open?scriptName=' + encodeURIComponent('「源码」小组件示例')); 11 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "google", 3 | "parserOptions": { 4 | "sourceType": "module", 5 | "ecmaVersion": 2017 6 | }, 7 | "rules": { 8 | "max-len": [ 9 | "error", 10 | { 11 | "code": 120, 12 | "ignoreTrailingComments": true, 13 | "ignoreUrls": true, 14 | "ignoreStrings": true, 15 | "ignoreTemplateLiterals": true, 16 | "ignoreRegExpLiterals": true 17 | } 18 | ], 19 | "comma-dangle": [ 20 | "error", 21 | "never" 22 | ], 23 | "require-jsdoc": 0 24 | } 25 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "v2-dev", 3 | "version": "1.0.0", 4 | "runtime_ver": 20201209, 5 | "description": "", 6 | "main": "index.js", 7 | "scripts": { 8 | "test": "echo \"Error: no test specified\" && exit 1", 9 | "start": "node app", 10 | "build": "node pack Scripts/「源码」bmw-linker.js", 11 | "purge-cdn": "https://purge.jsdelivr.net/gh/opp100/bmw-scriptable-widgets@main/" 12 | }, 13 | "author": "", 14 | "license": "ISC", 15 | "dependencies": { 16 | "body-parser": "^1.19.0", 17 | "dotenv": "^10.0.0", 18 | "express": "^4.17.1", 19 | "javascript-obfuscator": "^2.9.4", 20 | "multer": "^1.4.2" 21 | }, 22 | "devDependencies": { 23 | "@types/scriptable-ios": "^1.6.3" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /Publish/installer.js: -------------------------------------------------------------------------------- 1 | const FILE_MGR = FileManager[module.filename.includes('Documents/iCloud~') ? 'iCloud' : 'local'](); 2 | let files = FILE_MGR.listContents(FILE_MGR.documentsDirectory()); 3 | 4 | await Promise.all( 5 | ['bmw-linker.js'].map(async (js) => { 6 | const REQ = new Request(`https://cdn.jsdelivr.net/gh/opp100/bmw-scriptable-widgets@main/Publish/${encodeURIComponent(js)}`); 7 | const RES = await REQ.load(); 8 | try { 9 | FILE_MGR.remove(FILE_MGR.joinPath(FILE_MGR.documentsDirectory(), js)); 10 | } catch (e) {} 11 | 12 | FILE_MGR.write(FILE_MGR.joinPath(FILE_MGR.documentsDirectory(), js), RES); 13 | }) 14 | ); 15 | 16 | FILE_MGR.remove(module.filename); 17 | Safari.open('scriptable:///run?scriptName=' + encodeURIComponent('bmw-linker.js')); 18 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Youke XIANG 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 6 | 7 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 8 | 9 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # bmw-scriptable-widgets 2 | 3 | ## 介绍 4 | 本程序是基于Scriptable开发的一个小组件。使用「小件件」作为开发框架而搭建。 5 | 6 | 主要用于从My BMW API中获取车辆相关信息并以小组件的形式展示到iOS设备上。 7 | 8 | More languages: [English](README.en-us.md). 9 | 10 | ## 程序主页 11 | [![程序主页](/Publish/images/logo.svg)](https://bmw-linker.com) 12 | 13 | ## 小组件效果 14 | !["效果图"](/screenshots/sc_1.png?raw=true) 15 | 16 | ## 如何开发 17 | *开发需要nodejs环境,建议使用 [nvm](https://github.com/nvm-sh/nvm) 搭建node环境。 18 | 19 | *建议使用[VSCode](https://code.visualstudio.com/)作为IDE来开发此程序 20 | 21 | 在终端中运行以下命令 22 | ```bash 23 | npm install 24 | npm start 25 | ``` 26 | 然后根据Console的提示来 27 | 28 | *如果IP不正确,可以添加一个`.env`文件,然后放入电脑的IP和端口 29 | ``` 30 | DEV_SERVER=192.168.1.123 31 | ``` 32 | 33 | ## 「小件件」开发框架 34 | > iOS 小组件快速开发框架 / 模板 / 小组件源码 👉 for [Scriptable](https://scriptable.app) 35 | > 「小件件」开发框架[「小件件」开发框架](https://github.com/im3x/Scriptables) 36 | 37 | 38 | ### 特别鸣谢 39 | 感谢POPO大佬帮助UI建设。 40 | 41 | 感谢胡总、吹雪、沙包、以及部分群友,提供思路帮助与测试 42 | 43 | ### License 44 | [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](./LICENSE) 45 | 46 | ### 资助开发 47 | [![License: MIT](https://img.shields.io/static/v1?label=%E8%B5%84%E5%8A%A9%E5%BC%80%E5%8F%91&message=%E5%BE%AE%E4%BF%A1%E8%B5%9E%E8%B5%8F&color=success)](./Publish/images/payment.jpg) 48 | -------------------------------------------------------------------------------- /encode.js: -------------------------------------------------------------------------------- 1 | // 加密压缩打包后的小组件代码 2 | // 方便隐藏敏感信息,减少组件体积和保护小组件不被随意修改 3 | 4 | // 用法: 5 | // node encode.js Dist/「小件件」你的小组件.js 6 | 7 | 8 | const process = require('process') 9 | const os = require('os') 10 | const fs = require('fs') 11 | const path = require('path') 12 | 13 | var JB = require('javascript-obfuscator'); 14 | 15 | if (process.argv.length !== 3) { 16 | console.log('[!] 用法:node encode.js Dist/「小件件」xxx.js') 17 | process.exit(0) 18 | } 19 | 20 | const file_name = process.argv[2] 21 | const out_name = file_name.replace(".js", ".enc.js") 22 | 23 | // 读取源文件 24 | const widget_file = fs.readFileSync(path.join(__dirname, file_name)) 25 | 26 | let widget_code = widget_file.toString("utf-8") 27 | widget_code = widget_code.split("await Running(Widget)")[0]; 28 | 29 | 30 | var result = JB.obfuscate(widget_code.toString("utf-8"), { 31 | "rotateStringArray": true, 32 | "selfDefending": true, 33 | "stringArray": true, 34 | splitStringsChunkLength: 100, 35 | "stringArrayEncoding": ["rc4", "base64"] 36 | }).getObfuscatedCode() 37 | 38 | let result_header = widget_code.split("// icon-color:")[0] 39 | result_header += "// icon-color:" 40 | result_header += widget_code.split("// icon-color:")[1].split("\n")[0] 41 | result_header += "\n// " + file_name 42 | result_header += "\n// https://github.com/im3x/Scriptables" 43 | 44 | let result_code = `${result_header}\n${result};await Running(Widget);` 45 | 46 | fs.writeFileSync(path.join(__dirname, out_name), result_code); 47 | 48 | console.log("[*] 文件已压缩混淆至:", out_name) -------------------------------------------------------------------------------- /guide.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 手机安装「小件件」开发环境指导 7 | 8 | 9 |

「小件件」开发环境安装

10 | 11 | 12 |

打开 Scriptable,点击 ➕,粘贴,运行 ▶️

13 | 👉 2. 点击打开 Scriptable 14 | 15 | 44 | 55 | -------------------------------------------------------------------------------- /pack.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 打包成单独小组件 3 | * 用法: 4 | * node pack.js Scripts/「源码」小组件示例.js 5 | * 将会在`Dist`目录生成「小件件」小组件示例.js 文件,这个文件可以发送给用户单独使用 6 | */ 7 | 8 | const process = require('process') 9 | const os = require('os') 10 | const fs = require('fs') 11 | const path = require('path') 12 | 13 | if (process.argv.length !== 3) { 14 | console.log('[!] 用法:node pack Scripts/「源码」xxx.js') 15 | process.exit(0) 16 | } 17 | 18 | const SAVE_PATH = path.join(__dirname, "Publish") 19 | const file_name = process.argv[2] 20 | const out_name = file_name.replace("「源码」", "").replace("Scripts", "Publish"); 21 | 22 | // 创建目录 23 | if (!fs.existsSync(SAVE_PATH)) { 24 | fs.mkdirSync(SAVE_PATH) 25 | } 26 | // 组合文件 27 | const runtime_file = fs.readFileSync(path.join(__dirname, "Scripts", "「小件件」开发环境.js")) 28 | 29 | const runtime_code = runtime_file.toString("utf-8").split("// @running.end")[0] 30 | const widget_file = fs.readFileSync(path.join(__dirname, file_name)) 31 | 32 | const widget_code = widget_file.toString("utf-8"); 33 | const widget_class = widget_code.split("// @组件代码开始")[1].split("// @组件代码结束")[0] 34 | const widget_header = widget_code.split('// icon-color:')[1].split('\n')[0]; 35 | 36 | let result_code = `// Variables used by Scriptable. 37 | // These must be at the very top of the file. Do not edit. 38 | // icon-color:${widget_header} 39 | ${runtime_code} 40 | ${widget_class} 41 | await Running(Widget)` 42 | 43 | // 写入文件 44 | fs.writeFileSync(path.join(__dirname, out_name), result_code) 45 | console.log('[*] 文件已经保存到:' + out_name) -------------------------------------------------------------------------------- /README.en-us.md: -------------------------------------------------------------------------------- 1 | # bmw-scriptable-widgets 2 | 3 | ## What's this about? 4 | This project is a pure Node JS widget which can be used on [Scriptable](https://scriptable.app). 5 | 6 | The main purpose of this project is the load vehicle related information from, then display them into the desktop of iOS ( > 13) devices. 7 | 8 | 其他语言版本: [中文](README.md). 9 | ## Home Page 10 | [![Home Page](/Publish/images/logo.svg)](https://bmw-linker.com) 11 | ## Screenshots 12 | !["Screenshot"](/screenshots/sc_1.png?raw=true) 13 | 14 | ## How to Develop 15 | *NodeJS is required,recommend using [nvm](https://github.com/nvm-sh/nvm) to setup Node environment easily. 16 | 17 | *[VSCode](https://code.visualstudio.com/) is suggested as IDE for this project 18 | 19 | Run following commands in you Terminal 20 | ```bash 21 | npm install 22 | npm start 23 | ``` 24 | Then follow the instruction shown in the Console 25 | 26 | *If the IP address doesn't setup correctly, please put the `.env` file in the root of project and put your computer's IP address. Such as: 27 | ``` 28 | DEV_SERVER=192.168.1.123 29 | ``` 30 | 31 | ### Contributors 32 | Thanks POPO provides UI。 33 | 34 | Thanks for Mr. Hu, Mr.Chui and Mr.Shabao provide ideas and API logics. 35 | 36 | Thanks many other bimmwer owners give us feedback suggestions and help with test. 37 | 38 | ### License 39 | [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](./LICENSE) 40 | 41 | ### DONATE 42 | [![License: MIT](https://img.shields.io/static/v1?label=DONATE&message=WECHAT&color=success)](./Publish/images/payment.jpg) -------------------------------------------------------------------------------- /Publish/plugins/slick/fonts/slick.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Generated by Fontastic.me 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Publish/plugins/slick/slick.css: -------------------------------------------------------------------------------- 1 | /* Slider */ 2 | .slick-slider 3 | { 4 | position: relative; 5 | 6 | display: block; 7 | box-sizing: border-box; 8 | 9 | -webkit-user-select: none; 10 | -moz-user-select: none; 11 | -ms-user-select: none; 12 | user-select: none; 13 | 14 | -webkit-touch-callout: none; 15 | -khtml-user-select: none; 16 | -ms-touch-action: pan-y; 17 | touch-action: pan-y; 18 | -webkit-tap-highlight-color: transparent; 19 | } 20 | 21 | .slick-list 22 | { 23 | position: relative; 24 | 25 | display: block; 26 | overflow: hidden; 27 | 28 | margin: 0; 29 | padding: 0; 30 | } 31 | .slick-list:focus 32 | { 33 | outline: none; 34 | } 35 | .slick-list.dragging 36 | { 37 | cursor: pointer; 38 | cursor: hand; 39 | } 40 | 41 | .slick-slider .slick-track, 42 | .slick-slider .slick-list 43 | { 44 | -webkit-transform: translate3d(0, 0, 0); 45 | -moz-transform: translate3d(0, 0, 0); 46 | -ms-transform: translate3d(0, 0, 0); 47 | -o-transform: translate3d(0, 0, 0); 48 | transform: translate3d(0, 0, 0); 49 | } 50 | 51 | .slick-track 52 | { 53 | position: relative; 54 | top: 0; 55 | left: 0; 56 | 57 | display: block; 58 | margin-left: auto; 59 | margin-right: auto; 60 | } 61 | .slick-track:before, 62 | .slick-track:after 63 | { 64 | display: table; 65 | 66 | content: ''; 67 | } 68 | .slick-track:after 69 | { 70 | clear: both; 71 | } 72 | .slick-loading .slick-track 73 | { 74 | visibility: hidden; 75 | } 76 | 77 | .slick-slide 78 | { 79 | display: none; 80 | float: left; 81 | 82 | height: 100%; 83 | min-height: 1px; 84 | } 85 | [dir='rtl'] .slick-slide 86 | { 87 | float: right; 88 | } 89 | .slick-slide img 90 | { 91 | display: block; 92 | } 93 | .slick-slide.slick-loading img 94 | { 95 | display: none; 96 | } 97 | .slick-slide.dragging img 98 | { 99 | pointer-events: none; 100 | } 101 | .slick-initialized .slick-slide 102 | { 103 | display: block; 104 | } 105 | .slick-loading .slick-slide 106 | { 107 | visibility: hidden; 108 | } 109 | .slick-vertical .slick-slide 110 | { 111 | display: block; 112 | 113 | height: auto; 114 | 115 | border: 1px solid transparent; 116 | } 117 | .slick-arrow.slick-hidden { 118 | display: none; 119 | } 120 | -------------------------------------------------------------------------------- /Publish/404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 8 | BMW Linker - 404 9 | 10 | 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 |

404

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 | -------------------------------------------------------------------------------- /Publish/plugins/slick/slick-theme.css: -------------------------------------------------------------------------------- 1 | @charset 'UTF-8'; 2 | /* Slider */ 3 | .slick-loading .slick-list 4 | { 5 | background: #fff url('./ajax-loader.gif') center center no-repeat; 6 | } 7 | 8 | /* Icons */ 9 | @font-face 10 | { 11 | font-family: 'slick'; 12 | font-weight: normal; 13 | font-style: normal; 14 | 15 | src: url('./fonts/slick.eot'); 16 | src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg'); 17 | } 18 | /* Arrows */ 19 | .slick-prev, 20 | .slick-next 21 | { 22 | font-size: 0; 23 | line-height: 0; 24 | 25 | position: absolute; 26 | top: 50%; 27 | 28 | display: block; 29 | 30 | width: 20px; 31 | height: 20px; 32 | padding: 0; 33 | -webkit-transform: translate(0, -50%); 34 | -ms-transform: translate(0, -50%); 35 | transform: translate(0, -50%); 36 | 37 | cursor: pointer; 38 | 39 | color: transparent; 40 | border: none; 41 | outline: none; 42 | background: transparent; 43 | } 44 | .slick-prev:hover, 45 | .slick-prev:focus, 46 | .slick-next:hover, 47 | .slick-next:focus 48 | { 49 | color: transparent; 50 | outline: none; 51 | background: transparent; 52 | } 53 | .slick-prev:hover:before, 54 | .slick-prev:focus:before, 55 | .slick-next:hover:before, 56 | .slick-next:focus:before 57 | { 58 | opacity: 1; 59 | } 60 | .slick-prev.slick-disabled:before, 61 | .slick-next.slick-disabled:before 62 | { 63 | opacity: .25; 64 | } 65 | 66 | .slick-prev:before, 67 | .slick-next:before 68 | { 69 | font-family: 'slick'; 70 | font-size: 20px; 71 | line-height: 1; 72 | 73 | opacity: .75; 74 | color: white; 75 | 76 | -webkit-font-smoothing: antialiased; 77 | -moz-osx-font-smoothing: grayscale; 78 | } 79 | 80 | .slick-prev 81 | { 82 | left: -25px; 83 | } 84 | [dir='rtl'] .slick-prev 85 | { 86 | right: -25px; 87 | left: auto; 88 | } 89 | .slick-prev:before 90 | { 91 | content: '←'; 92 | } 93 | [dir='rtl'] .slick-prev:before 94 | { 95 | content: '→'; 96 | } 97 | 98 | .slick-next 99 | { 100 | right: -25px; 101 | } 102 | [dir='rtl'] .slick-next 103 | { 104 | right: auto; 105 | left: -25px; 106 | } 107 | .slick-next:before 108 | { 109 | content: '→'; 110 | } 111 | [dir='rtl'] .slick-next:before 112 | { 113 | content: '←'; 114 | } 115 | 116 | /* Dots */ 117 | .slick-dotted.slick-slider 118 | { 119 | margin-bottom: 30px; 120 | } 121 | 122 | .slick-dots 123 | { 124 | position: absolute; 125 | bottom: -25px; 126 | 127 | display: block; 128 | 129 | width: 100%; 130 | padding: 0; 131 | margin: 0; 132 | 133 | list-style: none; 134 | 135 | text-align: center; 136 | } 137 | .slick-dots li 138 | { 139 | position: relative; 140 | 141 | display: inline-block; 142 | 143 | width: 20px; 144 | height: 20px; 145 | margin: 0 5px; 146 | padding: 0; 147 | 148 | cursor: pointer; 149 | } 150 | .slick-dots li button 151 | { 152 | font-size: 0; 153 | line-height: 0; 154 | 155 | display: block; 156 | 157 | width: 20px; 158 | height: 20px; 159 | padding: 5px; 160 | 161 | cursor: pointer; 162 | 163 | color: transparent; 164 | border: 0; 165 | outline: none; 166 | background: transparent; 167 | } 168 | .slick-dots li button:hover, 169 | .slick-dots li button:focus 170 | { 171 | outline: none; 172 | } 173 | .slick-dots li button:hover:before, 174 | .slick-dots li button:focus:before 175 | { 176 | opacity: 1; 177 | } 178 | .slick-dots li button:before 179 | { 180 | font-family: 'slick'; 181 | font-size: 6px; 182 | line-height: 20px; 183 | 184 | position: absolute; 185 | top: 0; 186 | left: 0; 187 | 188 | width: 20px; 189 | height: 20px; 190 | 191 | content: '•'; 192 | text-align: center; 193 | 194 | opacity: .25; 195 | color: black; 196 | 197 | -webkit-font-smoothing: antialiased; 198 | -moz-osx-font-smoothing: grayscale; 199 | } 200 | .slick-dots li.slick-active button:before 201 | { 202 | opacity: 1; 203 | color: #2e7eed; 204 | } 205 | -------------------------------------------------------------------------------- /Publish/js/script.js: -------------------------------------------------------------------------------- 1 | (function ($) { 2 | 'use strict'; 3 | 4 | // ---------------------------- 5 | // AOS 6 | // ---------------------------- 7 | AOS.init({ 8 | once: true 9 | }); 10 | 11 | 12 | $(window).on('scroll', function () { 13 | //.Scroll to top show/hide 14 | var scrollToTop = $('.scroll-top-to'), 15 | scroll = $(window).scrollTop(); 16 | if (scroll >= 200) { 17 | scrollToTop.fadeIn(200); 18 | } else { 19 | scrollToTop.fadeOut(100); 20 | } 21 | }); 22 | // scroll-to-top 23 | $('.scroll-top-to').on('click', function () { 24 | $('body,html').animate({ 25 | scrollTop: 0 26 | }, 500); 27 | return false; 28 | }); 29 | 30 | $(document).ready(function() { 31 | 32 | // navbarDropdown 33 | if ($(window).width() < 992) { 34 | $('.main-nav .dropdown-toggle').on('click', function () { 35 | $(this).siblings('.dropdown-menu').animate({ 36 | height: 'toggle' 37 | }, 300); 38 | }); 39 | } 40 | 41 | // ----------------------------- 42 | // Testimonial Slider 43 | // ----------------------------- 44 | $('.testimonial-slider').slick({ 45 | slidesToShow: 2, 46 | infinite: true, 47 | arrows: false, 48 | autoplay: true, 49 | autoplaySpeed: 2000, 50 | dots: true, 51 | responsive: [ 52 | { 53 | breakpoint: 991, 54 | settings: { 55 | slidesToShow: 1, 56 | slidesToScroll: 1 57 | } 58 | } 59 | ] 60 | }); 61 | 62 | 63 | // ----------------------------- 64 | // Video Replace 65 | // ----------------------------- 66 | $('.video-box i').click(function () { 67 | var video = ''; 68 | $(this).replaceWith(video); 69 | }); 70 | 71 | 72 | // ----------------------------- 73 | // Count Down JS 74 | // ----------------------------- 75 | var syoTimer = $('#simple-timer'); 76 | if (syoTimer) { 77 | $('#simple-timer').syotimer({ 78 | year: 2023, 79 | month: 9, 80 | day: 1, 81 | hour: 0, 82 | minute: 0 83 | }); 84 | } 85 | 86 | 87 | // ----------------------------- 88 | // Story Slider 89 | // ----------------------------- 90 | $('.about-slider').slick({ 91 | slidesToShow: 1, 92 | infinite: true, 93 | arrows: false, 94 | autoplay: true, 95 | autoplaySpeed: 2000, 96 | dots: true 97 | }); 98 | 99 | 100 | // ----------------------------- 101 | // Quote Slider 102 | // ----------------------------- 103 | $('.quote-slider').slick({ 104 | slidesToShow: 1, 105 | infinite: true, 106 | arrows: false, 107 | autoplay: true, 108 | autoplaySpeed: 2000, 109 | dots: true 110 | }); 111 | 112 | 113 | // ----------------------------- 114 | // Client Slider 115 | // ----------------------------- 116 | $('.client-slider').slick({ 117 | slidesToShow: 4, 118 | infinite: true, 119 | arrows: false, 120 | // autoplay: true, 121 | autoplaySpeed: 2000, 122 | dots: true, 123 | responsive: [ 124 | { 125 | breakpoint: 0, 126 | settings: { 127 | slidesToShow: 1, 128 | slidesToScroll: 1 129 | } 130 | }, 131 | { 132 | breakpoint: 575, 133 | settings: { 134 | slidesToShow: 2, 135 | slidesToScroll: 1 136 | } 137 | }, 138 | { 139 | breakpoint: 767, 140 | settings: { 141 | slidesToShow: 2, 142 | slidesToScroll: 2 143 | } 144 | }, 145 | { 146 | breakpoint: 991, 147 | settings: { 148 | slidesToShow: 3, 149 | slidesToScroll: 2 150 | } 151 | } 152 | ] 153 | }); 154 | 155 | 156 | // scroll 157 | // $('.scrollTo').on('click', function (e) { 158 | // e.preventDefault(); 159 | // var target = $(this).attr('href'); 160 | // $('html, body').animate({ 161 | // scrollTop: ($(target).offset().top) 162 | // }, 500); 163 | // }); 164 | 165 | }); 166 | 167 | })(jQuery); -------------------------------------------------------------------------------- /Publish/payment.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 8 | BMW Linker - 打赏开发者 9 | 10 | 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 | 61 | 62 |
63 |
64 |
65 |
66 | 67 |

打赏开发者

68 | 69 |

70 |
71 | 微信扫码请开发者喝可乐 72 |
73 | (最好是无糖的) 74 |

75 |
76 | screenshot 77 |
78 |
79 |

80 | 给开发者留言: 81 |

82 | 83 |

xyouk721@gmail.com

84 |
85 |
86 |
87 |
88 |
89 | 90 | 95 | 96 | 97 | 98 | 99 |
100 | 101 |
102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | -------------------------------------------------------------------------------- /Publish/plugins/syotimer/jquery.syotimer.min.js: -------------------------------------------------------------------------------- 1 | /** 2 | * SyoTimer v.2.0.0 | under MIT licence 3 | * https://github.com/mrfratello/SyoTimer#readme 4 | */ 5 | !function(e){var t="day",i="hour",n="minute",o="second",r=86400,a=3600,s=60,d={d:t,h:i,m:n,s:o},l={list:[o,n,i,t],next:function(e){var t=this.list.indexOf(e);return t0&&this.list[t-1]}},u={year:2014,month:7,day:31,hour:0,minute:0,second:0,timeZone:"local",ignoreTransferTime:!1,layout:"dhms",periodic:!1,periodInterval:7,periodUnit:"d",doubleNumbers:!0,effectType:"none",lang:"eng",headTitle:"",footTitle:"",afterDeadline:function(e){e.bodyBlock.html('

The countdown is finished!

')}},m={second:!1,minute:!1,hour:!1,day:!1},c={init:function(t){var i=e.extend({},u,t||{});i.itemTypes=y.getItemTypesByLayout(i.layout),i._itemsHas=e.extend({},m);for(var n=0;n",{"class":"syotimer__head"}).html(i.headTitle),r=e("
",{"class":"syotimer__body"}),a=e("
",{"class":"syotimer__footer"}).html(i.footTitle),s={},d=0;d .syotimer-cell__value",t).css("opacity",1);var n=new Date,o=new Date(i.year,i.month-1,i.day,i.hour,i.minute,i.second),r=y.getDifferenceWithTimezone(n,o,i),a=y.getSecondsToDeadLine(r,i);a>=0?(c._refreshUnitsDom.apply(this,[a]),c._applyEffectSwitch.apply(this,[i.effectType])):(t=e.extend(t,t.data("syotimer-blocks")),i.afterDeadline(t))},_refreshUnitsDom:function(i){var n=e(this),o=n.data("syotimer-options"),r=n.data("syotimer-items"),a=o.itemTypes,s=y.getUnitsToDeadLine(i);o._itemsHas.day||(s.hour+=24*s.day),o._itemsHas.hour||(s.minute+=60*s.hour),o._itemsHas.minute||(s.second+=60*s.minute);for(var d=0;d",{"class":"syotimer-cell__value",text:"0"}),i=e("
",{"class":"syotimer-cell__unit"}),n=e("
",{"class":"syotimer-cell"});return n.append(t).append(i),n},getItemTypesByLayout:function(e){for(var t=[],i=0;i=0?(r=s%t.periodInterval,r=0===r?t.periodInterval:r,r-=1):r=t.periodInterval-s%t.periodInterval,o=n%a,0===o&&n<0&&r--,i=Math.abs(r*a+o)}else i=n;return i},getUnitsToDeadLine:function(e){var i=t,n={};do{var o=y.getPeriodUnit(i);n[i]=Math.floor(e/o),e%=o}while(i=l.prev(i));return n},getPeriodUnit:function(e){switch(e){case"d":case t:return r;case"h":case i:return a;case"m":case n:return s;case"s":case o:return 1}},getDifferenceWithTimezone:function(e,t,o){var r,a=t.getTime()-e.getTime(),s=0,d=0;if("local"!==o.timeZone){var l=parseFloat(o.timeZone)*y.getPeriodUnit(i),u=-e.getTimezoneOffset()*y.getPeriodUnit(n);s=1e3*(l-u)}if(o.ignoreTransferTime){var m=-e.getTimezoneOffset()*y.getPeriodUnit(n),c=-t.getTimezoneOffset()*y.getPeriodUnit(n);d=1e3*(m-c)}return r=s+d,a-r},format2:function(e,t){return t=t!==!1,e<=9&&t?"0"+e:""+e}},p={setOption:function(t,i){var n=e(this),o=n.data("syotimer-options");o.hasOwnProperty(t)&&(o[t]=i,n.data("syotimer-options",o))}};e.fn.syotimer=function(t){if("string"==typeof t&&"setOption"===t){var i=Array.prototype.slice.call(arguments,1);return this.each(function(){p[t].apply(this,i)})}return null===t||"object"==typeof t?c.init.apply(this,[t]):void e.error("SyoTimer. Error in call methods: methods is not exist")},e.syotimerLang={rus:{second:["секунда","секунды","секунд"],minute:["минута","минуты","минут"],hour:["час","часа","часов"],day:["день","дня","дней"],handler:"rusNumeral"},eng:{second:["second","seconds"],minute:["minute","minutes"],hour:["hour","hours"],day:["day","days"]},por:{second:["segundo","segundos"],minute:["minuto","minutos"],hour:["hora","horas"],day:["dia","dias"]},spa:{second:["segundo","segundos"],minute:["minuto","minutos"],hour:["hora","horas"],day:["día","días"]},heb:{second:["שניה","שניות"],minute:["דקה","דקות"],hour:["שעה","שעות"],day:["יום","ימים"]},universal:function(e){return 1===e?0:1},rusNumeral:function(e){var t,i=[2,0,1,1,1,2];return t=e%100>4&&e%100<20?2:i[e%10<5?e%10:5]},getNumeral:function(t,i,n){var o=e.syotimerLang[i].handler||"universal",r=this[o](t);return e.syotimerLang[i][n][r]}}}(jQuery); 6 | -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- 1 | require('dotenv').config(); 2 | 3 | const fs = require('fs'); 4 | const os = require('os'); 5 | const path = require('path'); 6 | const express = require('express'); 7 | const child_process = require('child_process'); 8 | const multer = require('multer'); 9 | const bodyParser = require('body-parser'); 10 | 11 | const HTTP_PORT = process.env.DEV_SERVER_PORT || 5566; 12 | const WORK_DIR = path.dirname(__filename); 13 | const SCRIPTS_DIR = path.join(WORK_DIR, 'Scripts'); 14 | const PUBLISH_DIR = path.join(WORK_DIR, 'Publish'); 15 | 16 | const app = express(); 17 | const upload = multer({ 18 | dest: os.tmpdir() 19 | }); 20 | app.use(upload.any()); 21 | app.use( 22 | bodyParser.urlencoded({ 23 | extended: false 24 | }) 25 | ); 26 | app.use(bodyParser.json()); 27 | 28 | const _ip = process.env.DEV_SERVER || getIPAdress(); 29 | 30 | app.get('/', (req, res) => { 31 | let html = fs.readFileSync(path.join(WORK_DIR, 'guide.html')).toString(); 32 | let js = fs.readFileSync(path.join(WORK_DIR, 'install-runtime.js')).toString(); 33 | 34 | js = js.replace('*|IP_ADDRESS|*', `${_ip}:${HTTP_PORT}`); 35 | 36 | // load all files from scripts table 37 | let files = fs.readdirSync(SCRIPTS_DIR); 38 | let filesStr = ''; 39 | 40 | for (const file of files) { 41 | filesStr += `'${file}',`; 42 | } 43 | 44 | js = js.replace('*|FILES|*', filesStr); 45 | 46 | html = html.replace('@@code@@', js); 47 | 48 | res.send(html); 49 | }); 50 | 51 | app.get('/Scripts/:fileName', (req, res) => { 52 | try { 53 | let js = fs.readFileSync(path.join(SCRIPTS_DIR, req.params['fileName'])).toString(); 54 | res.send(js); 55 | } catch (e) { 56 | res.send('//访问文件错误'); 57 | } 58 | }); 59 | 60 | app.get('/Publish/:fileName*', (req, res) => { 61 | try { 62 | let filePath = req.params['fileName']; 63 | for (const key in req.params) { 64 | if (Object.hasOwnProperty.call(req.params, key) && key != 'fileName') { 65 | filePath += req.params[key]; 66 | } 67 | } 68 | console.warn(filePath); 69 | 70 | res.sendFile(path.join(PUBLISH_DIR, filePath)); 71 | } catch (e) { 72 | res.send('//访问文件错误'); 73 | } 74 | }); 75 | 76 | app.get('/ping', (req, res) => { 77 | console.log('[-] ping..'); 78 | setTimeout(() => { 79 | res.send('pong').end(); 80 | }, 1000); 81 | }); 82 | 83 | let FILE_DATE = null; 84 | 85 | app.get('/sync', (req, res) => { 86 | // console.log('[-] 等待同步到手机..') 87 | const {name} = req.query; 88 | 89 | const WIDGET_FILE = path.join(SCRIPTS_DIR, name + '.js'); 90 | if (!fs.existsSync(WIDGET_FILE)) return res.send('nofile').end(); 91 | 92 | setTimeout(() => { 93 | // 判断文件时间 94 | const _time = fs.statSync(WIDGET_FILE).mtimeMs; 95 | if (_time === FILE_DATE) { 96 | res.send('no').end(); 97 | return; 98 | // return console.log("[!] 文件没有更改,不同步") 99 | } 100 | // 同步 101 | res.sendFile(WIDGET_FILE); 102 | console.log('[+] 同步到手机完毕'); 103 | FILE_DATE = _time; 104 | }, 1000); 105 | }); 106 | 107 | app.post('/sync', (req, res) => { 108 | if (req.files.length !== 1) return res.send('no'); 109 | console.log('[+] Scriptalbe App 已连接'); 110 | const _file = req.files[0]; 111 | const FILE_NAME = _file['originalname'] + '.js'; 112 | const WIDGET_FILE = path.join(SCRIPTS_DIR, FILE_NAME); 113 | fs.renameSync(_file['path'], WIDGET_FILE); 114 | res.send('ok'); 115 | console.log(`[*] 小组件源码(${_file['originalname']})已同步,请打开编辑`); 116 | FILE_DATE = fs.statSync(WIDGET_FILE).mtimeMs; 117 | // 尝试打开 118 | let cmd = `code "${WIDGET_FILE}"`; 119 | if (os.platform() === 'win32') { 120 | cmd = `cmd.exe /c ${cmd}`; 121 | } else if (os.platform() === 'linux') { 122 | let shell = process.env['SHELL']; 123 | cmd = `${shell} -c ${cmd}`; 124 | } else { 125 | cmd = `"/Applications/Visual Studio Code.app/Contents/MacOS/Electron" "${WIDGET_FILE}"`; 126 | } 127 | child_process.execSync(cmd); 128 | }); 129 | 130 | // 远程 console,调试中把调试输出内容传送到服务端控制台输出 131 | app.post('/console', (req, res) => { 132 | const {t, data} = req.body; 133 | const _time = new Date().toLocaleString().split(' ')[1]; 134 | switch (t) { 135 | case 'warn': 136 | console.warn(`[console.warn / ${_time}]`, typeof data === 'string' ? data : ''); 137 | if (typeof data === 'object') console.warn(data); 138 | break; 139 | case 'error': 140 | console.error(`[console.error / ${_time}]`, typeof data === 'string' ? data : ''); 141 | if (typeof data === 'object') console.error(data); 142 | break; 143 | default: 144 | console.log(`[console.log / ${_time}]`, typeof data === 'string' ? data : ''); 145 | if (typeof data === 'object') console.log(data); 146 | } 147 | res.send('ok'); 148 | }); 149 | 150 | // 获取当前电脑IP 151 | function getIPAdress() { 152 | var interfaces = os.networkInterfaces(); 153 | for (var devName in interfaces) { 154 | var iface = interfaces[devName]; 155 | for (var i = 0; i < iface.length; i++) { 156 | var alias = iface[i]; 157 | if (alias.family === 'IPv4' && alias.address !== '127.0.0.1' && !alias.internal) { 158 | return alias.address; 159 | } 160 | } 161 | } 162 | } 163 | 164 | const _host = `http://${_ip}:${HTTP_PORT}`; 165 | 166 | console.log('[*] 「小件件」开发服务运行中'); 167 | console.log(`[-] 地址:${_host}`); 168 | console.log(`[-] 如果你的手机还没有配置开发环境,请手机 Safari 访问上述地址,查看引导`); 169 | console.log( 170 | '[+] 如果你的手机已经安装好环境和小组件模板,请在 Scriptable 里点击小组件模板->远程开发,服务器地址输入:', 171 | _ip 172 | ); 173 | console.log('[*] 更多帮助:https://github.com/im3x/scriptables'); 174 | app.listen(HTTP_PORT); 175 | -------------------------------------------------------------------------------- /Publish/about.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 8 | BMW Linker - 关于 9 | 10 | 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 | 61 | 62 |
63 |
64 |
65 |
66 | 67 |

关于小组件

68 | 69 |
70 |

71 | BMW-Linker是开源免费的,由BMW车主兴趣开发,所有责任与BMW公司无关。 72 |

73 |
74 |

75 | BMW-Linker不会收集您的个人账户信息,所有账号信息将存在iCloud或者iPhone上但也请您妥善保管自己的账号。 76 |

77 |
78 |

79 | BMW-Linker会不定期推出新功能,如果BMW官方推出了小组件,BMW-Linker将会停止更新与支持。 80 |

81 |
82 |

83 | 感谢 Popo 提供 UI 设计,感谢胡总、吹雪和部分群友,提供思路帮助与测试。 84 |

85 |
86 |

87 | 感谢各路车友帮忙教学、推广、支持等。 88 |

89 |
90 |
91 | 点击这里赞助开发者 92 |
93 |
94 |
95 |
96 | 97 |
98 |
99 |
100 |
101 | 102 |

开发资料

103 | 104 |

105 | 小组件是基于Scriptable开发的。使用「小件件」作为开发框架而搭建。 106 |

107 |
108 |

109 | 开发者 110 |

111 |

112 | Yocky Xiang 113 |

114 | 115 |

xyouk721@gmail.com

116 |
117 | 118 | 119 | 查看源码 Github 120 | 121 |
122 |
123 |
124 |
125 | 126 |
127 |
128 | Copyright © . Yocky Xiang 129 |
130 |
131 | 132 | 133 | 134 | 135 |
136 | 137 |
138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | -------------------------------------------------------------------------------- /Publish/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 8 | BMW Linker - 主页 9 | 10 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 60 | 61 | 64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |

BMW-Linker
小组件

87 |

让您最棒的BMW出现在iOS桌面

88 |

点击这里开始

89 |
90 |
91 | screenshot 92 |
93 |
94 |
95 |
96 | 97 | 98 |
99 |
100 |
101 |
102 |
103 | 104 |

实时同步

105 |

106 | 小组件会与您的My BMW同步,让您能更快捷地获取车辆信息 107 |

108 |
109 |
110 | 111 |

开源代码

112 |

小组件已将代码完全开源化,免费,无广告,无后门,更安全,更透明

113 |
114 |
115 | 116 |

自定义

117 |

小组件支持大量自定义,让您的小组件更具创造性

118 |

119 |
120 |
121 |
122 |
123 |
124 | 125 | 128 |
129 |
130 | Copyright © . Yocky Xiang 131 |
132 |
133 | 134 | 135 | 136 |
137 | 138 |
139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | -------------------------------------------------------------------------------- /Publish/images/logo.svg: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /Publish/installation.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 8 | BMW Linker - 小组件安装指导 9 | 10 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 60 |
61 |

62 | 微信打开 63 |

64 |
65 |
66 |
67 |
68 |
69 |
70 |

BMW Linker

71 |

小组件安装指导

72 | 73 | 74 |
75 | 80 |
81 | 84 |
85 |
86 |
87 |
88 |
1. 下载安装 Scriptable App
89 |
90 |
91 | 96 | App Store 102 | 103 |
104 |
105 |
106 |
107 |
2. 点击 复制代码
108 | 复制代码 109 | 110 |
111 |
112 |
113 |
114 |
3. 点击 打开Scriptable, 点击 ➕,粘贴至空白处,运行 ▶️
115 | 打开 Scriptable 118 |
119 |
120 |
121 |
122 |
4. 点击bmw-linker并根据提示完成设置
123 | 124 |
125 |
126 |
5. 在桌面添加小组件
127 | 128 |
129 |
130 |
131 |
132 |
133 | 134 |
135 |
136 |
137 |
138 |

「遇到问题可查看帮助文档」

139 |
140 |
141 |
142 |
143 | 144 |
145 |
146 | Copyright © . Yocky Xiang 147 |
148 |
149 | 150 | 151 | 152 | 153 |
154 | 155 |
156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 207 | 263 | 264 | -------------------------------------------------------------------------------- /Publish/plugins/fancybox/jquery.fancybox.min.css: -------------------------------------------------------------------------------- 1 | @charset "UTF-8";.fancybox-enabled{overflow:hidden}.fancybox-enabled body{overflow:visible;height:100%}.fancybox-is-hidden{position:absolute;top:-9999px;left:-9999px;visibility:hidden}.fancybox-container{position:fixed;top:0;left:0;width:100%;height:100%;z-index:99993;-webkit-tap-highlight-color:transparent;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform:translateZ(0);transform:translateZ(0)}.fancybox-container~.fancybox-container{z-index:99992}.fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-stage{position:absolute;top:0;right:0;bottom:0;left:0}.fancybox-outer{overflow-y:auto;-webkit-overflow-scrolling:touch}.fancybox-bg{background:#1e1e1e;opacity:0;transition-duration:inherit;transition-property:opacity;transition-timing-function:cubic-bezier(.47,0,.74,.71)}.fancybox-is-open .fancybox-bg{opacity:.87;transition-timing-function:cubic-bezier(.22,.61,.36,1)}.fancybox-caption-wrap,.fancybox-infobar,.fancybox-toolbar{position:absolute;direction:ltr;z-index:99997;opacity:0;visibility:hidden;transition:opacity .25s,visibility 0s linear .25s;box-sizing:border-box}.fancybox-show-caption .fancybox-caption-wrap,.fancybox-show-infobar .fancybox-infobar,.fancybox-show-toolbar .fancybox-toolbar{opacity:1;visibility:visible;transition:opacity .25s,visibility 0s}.fancybox-infobar{top:0;left:50%;margin-left:-79px}.fancybox-infobar__body{display:inline-block;width:70px;line-height:44px;font-size:13px;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;text-align:center;color:#ddd;background-color:rgba(30,30,30,.7);pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent;-webkit-font-smoothing:subpixel-antialiased}.fancybox-toolbar{top:0;right:0}.fancybox-stage{overflow:hidden;direction:ltr;z-index:99994;-webkit-transform:translateZ(0)}.fancybox-slide{position:absolute;top:0;left:0;width:100%;height:100%;margin:0;padding:0;overflow:auto;outline:none;white-space:normal;box-sizing:border-box;text-align:center;z-index:99994;-webkit-overflow-scrolling:touch;display:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition-property:opacity,-webkit-transform;transition-property:transform,opacity;transition-property:transform,opacity,-webkit-transform;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.fancybox-slide:before{content:"";display:inline-block;vertical-align:middle;height:100%;width:0}.fancybox-is-sliding .fancybox-slide,.fancybox-slide--current,.fancybox-slide--next,.fancybox-slide--previous{display:block}.fancybox-slide--image{overflow:visible}.fancybox-slide--image:before{display:none}.fancybox-slide--video .fancybox-content,.fancybox-slide--video iframe{background:#000}.fancybox-slide--map .fancybox-content,.fancybox-slide--map iframe{background:#e5e3df}.fancybox-slide--next{z-index:99995}.fancybox-slide>*{display:inline-block;position:relative;padding:24px;margin:44px 0;border-width:0;vertical-align:middle;text-align:left;background-color:#fff;overflow:auto;box-sizing:border-box}.fancybox-slide .fancybox-image-wrap{position:absolute;top:0;left:0;margin:0;padding:0;border:0;z-index:99995;background:transparent;cursor:default;overflow:visible;-webkit-transform-origin:top left;transform-origin:top left;background-size:100% 100%;background-repeat:no-repeat;-webkit-backface-visibility:hidden;backface-visibility:hidden}.fancybox-can-zoomOut .fancybox-image-wrap{cursor:zoom-out}.fancybox-can-zoomIn .fancybox-image-wrap{cursor:zoom-in}.fancybox-can-drag .fancybox-image-wrap{cursor:-webkit-grab;cursor:grab}.fancybox-is-dragging .fancybox-image-wrap{cursor:-webkit-grabbing;cursor:grabbing}.fancybox-image,.fancybox-spaceball{position:absolute;top:0;left:0;width:100%;height:100%;margin:0;padding:0;border:0;max-width:none;max-height:none}.fancybox-spaceball{z-index:1}.fancybox-slide--iframe .fancybox-content{padding:0;width:80%;height:80%;max-width:calc(100% - 100px);max-height:calc(100% - 88px);overflow:visible;background:#fff}.fancybox-iframe{display:block;padding:0;border:0;height:100%}.fancybox-error,.fancybox-iframe{margin:0;width:100%;background:#fff}.fancybox-error{padding:40px;max-width:380px;cursor:default}.fancybox-error p{margin:0;padding:0;color:#444;font:16px/20px Helvetica Neue,Helvetica,Arial,sans-serif}.fancybox-close-small{position:absolute;top:0;right:0;width:44px;height:44px;padding:0;margin:0;border:0;border-radius:0;outline:none;background:transparent;z-index:10;cursor:pointer}.fancybox-close-small:after{content:"×";position:absolute;top:5px;right:5px;width:30px;height:30px;font:20px/30px Arial,Helvetica Neue,Helvetica,sans-serif;color:#888;font-weight:300;text-align:center;border-radius:50%;border-width:0;background:#fff;transition:background .25s;box-sizing:border-box;z-index:2}.fancybox-close-small:focus:after{outline:1px dotted #888}.fancybox-close-small:hover:after{color:#555;background:#eee}.fancybox-slide--iframe .fancybox-close-small{top:0;right:-44px}.fancybox-slide--iframe .fancybox-close-small:after{background:transparent;font-size:35px;color:#aaa}.fancybox-slide--iframe .fancybox-close-small:hover:after{color:#fff}.fancybox-caption-wrap{bottom:0;left:0;right:0;padding:60px 30px 0;background:linear-gradient(180deg,transparent 0,rgba(0,0,0,.1) 20%,rgba(0,0,0,.2) 40%,rgba(0,0,0,.6) 80%,rgba(0,0,0,.8));pointer-events:none}.fancybox-caption{padding:30px 0;border-top:1px solid hsla(0,0%,100%,.4);font-size:14px;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:#fff;line-height:20px;-webkit-text-size-adjust:none}.fancybox-caption a,.fancybox-caption button,.fancybox-caption select{pointer-events:all}.fancybox-caption a{color:#fff;text-decoration:underline}.fancybox-button{display:inline-block;position:relative;margin:0;padding:0;border:0;width:44px;height:44px;line-height:44px;text-align:center;background:transparent;color:#ddd;border-radius:0;cursor:pointer;vertical-align:top;outline:none}.fancybox-button[disabled]{cursor:default;pointer-events:none}.fancybox-button,.fancybox-infobar__body{background:rgba(30,30,30,.6)}.fancybox-button:hover:not([disabled]){color:#fff;background:rgba(0,0,0,.8)}.fancybox-button:after,.fancybox-button:before{content:"";pointer-events:none;position:absolute;background-color:currentColor;color:currentColor;opacity:.9;box-sizing:border-box;display:inline-block}.fancybox-button[disabled]:after,.fancybox-button[disabled]:before{opacity:.3}.fancybox-button--left:after,.fancybox-button--right:after{top:18px;width:6px;height:6px;background:transparent;border-top:2px solid currentColor;border-right:2px solid currentColor}.fancybox-button--left:after{left:20px;-webkit-transform:rotate(-135deg);transform:rotate(-135deg)}.fancybox-button--right:after{right:20px;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.fancybox-button--left{border-bottom-left-radius:5px}.fancybox-button--right{border-bottom-right-radius:5px}.fancybox-button--close:after,.fancybox-button--close:before{content:"";display:inline-block;position:absolute;height:2px;width:16px;top:calc(50% - 1px);left:calc(50% - 8px)}.fancybox-button--close:before{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.fancybox-button--close:after{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.fancybox-arrow{position:absolute;top:50%;margin:-50px 0 0;height:100px;width:54px;padding:0;border:0;outline:none;background:none;cursor:pointer;z-index:99995;opacity:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;transition:opacity .25s}.fancybox-arrow:after{content:"";position:absolute;top:28px;width:44px;height:44px;background-color:rgba(30,30,30,.8);background-image:url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjRkZGRkZGIiBoZWlnaHQ9IjQ4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSI0OCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPiAgICA8cGF0aCBkPSJNMTIgNGwtMS40MSAxLjQxTDE2LjE3IDExSDR2MmgxMi4xN2wtNS41OCA1LjU5TDEyIDIwbDgtOHoiLz48L3N2Zz4=);background-repeat:no-repeat;background-position:50%;background-size:24px 24px}.fancybox-arrow--right{right:0}.fancybox-arrow--left{left:0;-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fancybox-arrow--left:after,.fancybox-arrow--right:after{left:0}.fancybox-show-nav .fancybox-arrow{opacity:.6}.fancybox-show-nav .fancybox-arrow[disabled]{opacity:.3}.fancybox-loading{border:6px solid hsla(0,0%,39%,.4);border-top:6px solid hsla(0,0%,100%,.6);border-radius:100%;height:50px;width:50px;-webkit-animation:a .8s infinite linear;animation:a .8s infinite linear;background:transparent;position:absolute;top:50%;left:50%;margin-top:-25px;margin-left:-25px;z-index:99999}@-webkit-keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fancybox-animated{transition-timing-function:cubic-bezier(0,0,.25,1)}.fancybox-fx-slide.fancybox-slide--previous{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);opacity:0}.fancybox-fx-slide.fancybox-slide--next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);opacity:0}.fancybox-fx-slide.fancybox-slide--current{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}.fancybox-fx-fade.fancybox-slide--next,.fancybox-fx-fade.fancybox-slide--previous{opacity:0;transition-timing-function:cubic-bezier(.19,1,.22,1)}.fancybox-fx-fade.fancybox-slide--current{opacity:1}.fancybox-fx-zoom-in-out.fancybox-slide--previous{-webkit-transform:scale3d(1.5,1.5,1.5);transform:scale3d(1.5,1.5,1.5);opacity:0}.fancybox-fx-zoom-in-out.fancybox-slide--next{-webkit-transform:scale3d(.5,.5,.5);transform:scale3d(.5,.5,.5);opacity:0}.fancybox-fx-zoom-in-out.fancybox-slide--current{-webkit-transform:scaleX(1);transform:scaleX(1);opacity:1}.fancybox-fx-rotate.fancybox-slide--previous{-webkit-transform:rotate(-1turn);transform:rotate(-1turn);opacity:0}.fancybox-fx-rotate.fancybox-slide--next{-webkit-transform:rotate(1turn);transform:rotate(1turn);opacity:0}.fancybox-fx-rotate.fancybox-slide--current{-webkit-transform:rotate(0deg);transform:rotate(0deg);opacity:1}.fancybox-fx-circular.fancybox-slide--previous{-webkit-transform:scale3d(0,0,0) translate3d(-100%,0,0);transform:scale3d(0,0,0) translate3d(-100%,0,0);opacity:0}.fancybox-fx-circular.fancybox-slide--next{-webkit-transform:scale3d(0,0,0) translate3d(100%,0,0);transform:scale3d(0,0,0) translate3d(100%,0,0);opacity:0}.fancybox-fx-circular.fancybox-slide--current{-webkit-transform:scaleX(1) translateZ(0);transform:scaleX(1) translateZ(0);opacity:1}.fancybox-fx-tube.fancybox-slide--previous{-webkit-transform:translate3d(-100%,0,0) scale(.1) skew(-10deg);transform:translate3d(-100%,0,0) scale(.1) skew(-10deg)}.fancybox-fx-tube.fancybox-slide--next{-webkit-transform:translate3d(100%,0,0) scale(.1) skew(10deg);transform:translate3d(100%,0,0) scale(.1) skew(10deg)}.fancybox-fx-tube.fancybox-slide--current{-webkit-transform:translateZ(0) scale(1);transform:translateZ(0) scale(1)}@media (max-width:800px){.fancybox-infobar{left:0;margin-left:0}.fancybox-button--left,.fancybox-button--right{display:none!important}.fancybox-caption{padding:20px 0;margin:0}}.fancybox-button--fullscreen:before{width:15px;height:11px;left:calc(50% - 7px);top:calc(50% - 6px);border:2px solid;background:none}.fancybox-button--pause:before,.fancybox-button--play:before{top:calc(50% - 6px);left:calc(50% - 4px);background:transparent}.fancybox-button--play:before{width:0;height:0;border-top:6px inset transparent;border-bottom:6px inset transparent;border-left:10px solid;border-radius:1px}.fancybox-button--pause:before{width:7px;height:11px;border-style:solid;border-width:0 2px}.fancybox-button--thumbs,.fancybox-thumbs{display:none}@media (min-width:800px){.fancybox-button--thumbs{display:inline-block}.fancybox-button--thumbs span{font-size:23px}.fancybox-button--thumbs:before{width:3px;height:3px;top:calc(50% - 2px);left:calc(50% - 2px);box-shadow:0 -4px 0,-4px -4px 0,4px -4px 0,inset 0 0 0 32px,-4px 0 0,4px 0 0,0 4px 0,-4px 4px 0,4px 4px 0}.fancybox-thumbs{position:absolute;top:0;right:0;bottom:0;left:auto;width:220px;margin:0;padding:5px 5px 0 0;background:#fff;word-break:normal;-webkit-tap-highlight-color:transparent;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;box-sizing:border-box;z-index:99995}.fancybox-show-thumbs .fancybox-thumbs{display:block}.fancybox-show-thumbs .fancybox-inner{right:220px}.fancybox-thumbs>ul{list-style:none;position:absolute;position:relative;width:100%;height:100%;margin:0;padding:0;overflow-x:hidden;overflow-y:auto;font-size:0}.fancybox-thumbs>ul>li{float:left;overflow:hidden;max-width:50%;padding:0;margin:0;width:105px;height:75px;position:relative;cursor:pointer;outline:none;border:5px solid transparent;border-top-width:0;border-right-width:0;-webkit-tap-highlight-color:transparent;-webkit-backface-visibility:hidden;backface-visibility:hidden;box-sizing:border-box}li.fancybox-thumbs-loading{background:rgba(0,0,0,.1)}.fancybox-thumbs>ul>li>img{position:absolute;top:0;left:0;min-width:100%;min-height:100%;max-width:none;max-height:none;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fancybox-thumbs>ul>li:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;border-radius:2px;border:4px solid #4ea7f9;z-index:99991;opacity:0;transition:all .2s cubic-bezier(.25,.46,.45,.94)}.fancybox-thumbs>ul>li.fancybox-thumbs-active:before{opacity:1}} -------------------------------------------------------------------------------- /Publish/plugins/slick/README.markdown: -------------------------------------------------------------------------------- 1 | slick 2 | ------- 3 | 4 | [1]: 5 | 6 | _the last carousel you'll ever need_ 7 | 8 | #### Demo 9 | 10 | [http://kenwheeler.github.io/slick](http://kenwheeler.github.io/slick/) 11 | 12 | #### CDN 13 | 14 | To start working with Slick right away, there's a couple of CDN choices availabile 15 | to serve the files as close, and fast as possible to your users: 16 | 17 | - https://cdnjs.com/libraries/slick-carousel 18 | - https://www.jsdelivr.com/projects/jquery.slick 19 | 20 | ##### Example using jsDelivr 21 | 22 | Just add a link to the css file in your ``: 23 | 24 | ```html 25 | 26 | 27 | 28 | 29 | ``` 30 | 31 | Then, before your closing `````` tag add: 32 | 33 | ```html 34 | 35 | ``` 36 | 37 | #### Package Managers 38 | 39 | ```sh 40 | # Bower 41 | bower install --save slick-carousel 42 | 43 | # NPM 44 | npm install slick-carousel 45 | ``` 46 | 47 | #### Contributing 48 | 49 | PLEASE review CONTRIBUTING.markdown prior to requesting a feature, filing a pull request or filing an issue. 50 | 51 | ### Data Attribute Settings 52 | 53 | In slick 1.5 you can now add settings using the data-slick attribute. You still need to call $(element).slick() to initialize slick on the element. 54 | 55 | Example: 56 | 57 | ```html 58 |
59 |

1

60 |

2

61 |

3

62 |

4

63 |

5

64 |

6

65 |
66 | ``` 67 | 68 | ### Settings 69 | 70 | Option | Type | Default | Description 71 | ------ | ---- | ------- | ----------- 72 | accessibility | boolean | true | Enables tabbing and arrow key navigation. Unless `autoplay: true`, sets browser focus to current slide (or first of current slide set, if multiple `slidesToShow`) after slide change. For full a11y compliance enable focusOnChange in addition to this. 73 | adaptiveHeight | boolean | false | Adapts slider height to the current slide 74 | appendArrows | string | $(element) | Change where the navigation arrows are attached (Selector, htmlString, Array, Element, jQuery object) 75 | appendDots | string | $(element) | Change where the navigation dots are attached (Selector, htmlString, Array, Element, jQuery object) 76 | arrows | boolean | true | Enable Next/Prev arrows 77 | asNavFor | string | $(element) | Enables syncing of multiple sliders 78 | autoplay | boolean | false | Enables auto play of slides 79 | autoplaySpeed | int | 3000 | Auto play change interval 80 | centerMode | boolean | false | Enables centered view with partial prev/next slides. Use with odd numbered slidesToShow counts. 81 | centerPadding | string | '50px' | Side padding when in center mode. (px or %) 82 | cssEase | string | 'ease' | CSS3 easing 83 | customPaging | function | n/a | Custom paging templates. See source for use example. 84 | dots | boolean | false | Current slide indicator dots 85 | dotsClass | string | 'slick-dots' | Class for slide indicator dots container 86 | draggable | boolean | true | Enables desktop dragging 87 | easing | string | 'linear' | animate() fallback easing 88 | edgeFriction | integer | 0.15 | Resistance when swiping edges of non-infinite carousels 89 | fade | boolean | false | Enables fade 90 | focusOnSelect | boolean | false | Enable focus on selected element (click) 91 | focusOnChange | boolean | false | Puts focus on slide after change 92 | infinite | boolean | true | Infinite looping 93 | initialSlide | integer | 0 | Slide to start on 94 | lazyLoad | string | 'ondemand' | Accepts 'ondemand' or 'progressive' for lazy load technique. 'ondemand' will load the image as soon as you slide to it, 'progressive' loads one image after the other when the page loads. 95 | mobileFirst | boolean | false | Responsive settings use mobile first calculation 96 | nextArrow | string (html \| jQuery selector) \| object (DOM node \| jQuery object) | `` | Allows you to select a node or customize the HTML for the "Next" arrow. 97 | pauseOnDotsHover | boolean | false | Pauses autoplay when a dot is hovered 98 | pauseOnFocus | boolean | true | Pauses autoplay when slider is focussed 99 | pauseOnHover | boolean | true | Pauses autoplay on hover 100 | prevArrow | string (html \| jQuery selector) \| object (DOM node \| jQuery object) | `` | Allows you to select a node or customize the HTML for the "Previous" arrow. 101 | respondTo | string | 'window' | Width that responsive object responds to. Can be 'window', 'slider' or 'min' (the smaller of the two). 102 | responsive | array | null | Array of objects [containing breakpoints and settings objects (see example)](#responsive-option-example). Enables settings at given `breakpoint`. Set `settings` to "unslick" instead of an object to disable slick at a given breakpoint. 103 | rows | int | 1 | Setting this to more than 1 initializes grid mode. Use slidesPerRow to set how many slides should be in each row. 104 | rtl | boolean | false | Change the slider's direction to become right-to-left 105 | slide | string | '' | Slide element query 106 | slidesPerRow | int | 1 | With grid mode initialized via the rows option, this sets how many slides are in each grid row. 107 | slidesToScroll | int | 1 | # of slides to scroll at a time 108 | slidesToShow | int | 1 | # of slides to show at a time 109 | speed | int | 300 | Transition speed 110 | swipe | boolean | true | Enables touch swipe 111 | swipeToSlide | boolean | false | Swipe to slide irrespective of slidesToScroll 112 | touchMove | boolean | true | Enables slide moving with touch 113 | touchThreshold | int | 5 | To advance slides, the user must swipe a length of (1/touchThreshold) * the width of the slider. 114 | useCSS | boolean | true | Enable/Disable CSS Transitions 115 | useTransform | boolean | true | Enable/Disable CSS Transforms 116 | variableWidth | boolean | false | Disables automatic slide width calculation 117 | vertical | boolean | false | Vertical slide direction 118 | verticalSwiping | boolean | false | Changes swipe direction to vertical 119 | waitForAnimate | boolean | true | Ignores requests to advance the slide while animating 120 | zIndex | number | 1000 | Set the zIndex values for slides, useful for IE9 and lower 121 | 122 | ##### Responsive Option Example 123 | The responsive option, and value, is quite unique and powerful. 124 | You can use it like so: 125 | 126 | ```javascript 127 | $(".slider").slick({ 128 | 129 | // normal options... 130 | infinite: false, 131 | 132 | // the magic 133 | responsive: [{ 134 | 135 | breakpoint: 1024, 136 | settings: { 137 | slidesToShow: 3, 138 | infinite: true 139 | } 140 | 141 | }, { 142 | 143 | breakpoint: 600, 144 | settings: { 145 | slidesToShow: 2, 146 | dots: true 147 | } 148 | 149 | }, { 150 | 151 | breakpoint: 300, 152 | settings: "unslick" // destroys slick 153 | 154 | }] 155 | }); 156 | ``` 157 | 158 | 159 | 160 | 161 | ### Events 162 | 163 | In slick 1.4, callback methods were deprecated and replaced with events. Use them before the initialization of slick as shown below: 164 | 165 | ```javascript 166 | // On swipe event 167 | $('.your-element').on('swipe', function(event, slick, direction){ 168 | console.log(direction); 169 | // left 170 | }); 171 | 172 | // On edge hit 173 | $('.your-element').on('edge', function(event, slick, direction){ 174 | console.log('edge was hit') 175 | }); 176 | 177 | // On before slide change 178 | $('.your-element').on('beforeChange', function(event, slick, currentSlide, nextSlide){ 179 | console.log(nextSlide); 180 | }); 181 | ``` 182 | 183 | Event | Params | Description 184 | ------ | -------- | ----------- 185 | afterChange | event, slick, currentSlide | After slide change callback 186 | beforeChange | event, slick, currentSlide, nextSlide | Before slide change callback 187 | breakpoint | event, slick, breakpoint | Fires after a breakpoint is hit 188 | destroy | event, slick | When slider is destroyed, or unslicked. 189 | edge | event, slick, direction | Fires when an edge is overscrolled in non-infinite mode. 190 | init | event, slick | When Slick initializes for the first time callback. Note that this event should be defined before initializing the slider. 191 | reInit | event, slick | Every time Slick (re-)initializes callback 192 | setPosition | event, slick | Every time Slick recalculates position 193 | swipe | event, slick, direction | Fires after swipe/drag 194 | lazyLoaded | event, slick, image, imageSource | Fires after image loads lazily 195 | lazyLoadError | event, slick, image, imageSource | Fires after image fails to load 196 | 197 | 198 | #### Methods 199 | 200 | Methods are called on slick instances through the slick method itself in version 1.4, see below: 201 | 202 | ```javascript 203 | // Add a slide 204 | $('.your-element').slick('slickAdd',"
"); 205 | 206 | // Get the current slide 207 | var currentSlide = $('.your-element').slick('slickCurrentSlide'); 208 | ``` 209 | 210 | This new syntax allows you to call any internal slick method as well: 211 | 212 | ```javascript 213 | // Manually refresh positioning of slick 214 | $('.your-element').slick('setPosition'); 215 | ``` 216 | 217 | 218 | Method | Argument | Description 219 | ------ | -------- | ----------- 220 | `slick` | options : object | Initializes Slick 221 | `unslick` | | Destroys Slick 222 | `slickNext` | | Triggers next slide 223 | `slickPrev` | | Triggers previous slide 224 | `slickPause` | | Pause Autoplay 225 | `slickPlay` | | Start Autoplay (_will also set `autoplay` option to `true`_) 226 | `slickGoTo` | index : int, dontAnimate : bool | Goes to slide by index, skipping animation if second parameter is set to true 227 | `slickCurrentSlide` | | Returns the current slide index 228 | `slickAdd` | element : html or DOM object, index: int, addBefore: bool | Add a slide. If an index is provided, will add at that index, or before if addBefore is set. If no index is provided, add to the end or to the beginning if addBefore is set. Accepts HTML String || Object 229 | `slickRemove` | index: int, removeBefore: bool | Remove slide by index. If removeBefore is set true, remove slide preceding index, or the first slide if no index is specified. If removeBefore is set to false, remove the slide following index, or the last slide if no index is set. 230 | `slickFilter` | filter : selector or function | Filters slides using jQuery .filter syntax 231 | `slickUnfilter` | | Removes applied filter 232 | `slickGetOption` | option : string(option name) | Gets an option value. 233 | `slickSetOption` | change an option, `refresh` is always `boolean` and will update UI changes... 234 | | `option, value, refresh` | change a [single `option`](https://github.com/kenwheeler/slick#settings) to given `value`; `refresh` is optional. 235 | | `"responsive", [{ breakpoint: n, settings: {} }, ... ], refresh` | change or add [whole sets of responsive options](#responsive-option-example) 236 | | `{ option: value, option: value, ... }, refresh` | change [multiple `option`s](https://github.com/kenwheeler/slick#settings) to corresponding `value`s. 237 | 238 | 239 | #### Example 240 | 241 | Initialize with: 242 | 243 | ```javascript 244 | $(element).slick({ 245 | dots: true, 246 | speed: 500 247 | }); 248 | ``` 249 | 250 | Change the speed with: 251 | 252 | ```javascript 253 | $(element).slick('slickSetOption', 'speed', 5000, true); 254 | ``` 255 | 256 | Destroy with: 257 | 258 | ```javascript 259 | $(element).slick('unslick'); 260 | ``` 261 | 262 | 263 | #### Sass Variables 264 | 265 | Variable | Type | Default | Description 266 | ------ | ---- | ------- | ----------- 267 | $slick-font-path | string | "./fonts/" | Directory path for the slick icon font 268 | $slick-font-family | string | "slick" | Font-family for slick icon font 269 | $slick-loader-path | string | "./" | Directory path for the loader image 270 | $slick-arrow-color | color | white | Color of the left/right arrow icons 271 | $slick-dot-color | color | black | Color of the navigation dots 272 | $slick-dot-color-active | color | $slick-dot-color | Color of the active navigation dot 273 | $slick-prev-character | string | '\2190' | Unicode character code for the previous arrow icon 274 | $slick-next-character | string | '\2192' | Unicode character code for the next arrow icon 275 | $slick-dot-character | string | '\2022' | Unicode character code for the navigation dot icon 276 | $slick-dot-size | pixels | 6px | Size of the navigation dots 277 | 278 | #### Browser support 279 | 280 | Slick works on IE8+ in addition to other modern browsers such as Chrome, Firefox, and Safari. 281 | 282 | #### Dependencies 283 | 284 | jQuery 1.7 285 | 286 | #### License 287 | 288 | Copyright (c) 2017 Ken Wheeler 289 | 290 | Licensed under the MIT license. 291 | 292 | Free as in Bacon. 293 | -------------------------------------------------------------------------------- /Publish/plugins/aos/aos.js: -------------------------------------------------------------------------------- 1 | !function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.AOS=t():e.AOS=t()}(this,function(){return function(e){function t(o){if(n[o])return n[o].exports;var i=n[o]={exports:{},id:o,loaded:!1};return e[o].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p="dist/",t(0)}([function(e,t,n){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}var i=Object.assign||function(e){for(var t=1;t0&&void 0!==arguments[0]&&arguments[0];if(e&&(k=!0),k)return w=(0,y.default)(w,j),(0,b.default)(w,j.once),w},_=function(){w=(0,h.default)(),O()},S=function(){w.forEach(function(e,t){e.node.removeAttribute("data-aos"),e.node.removeAttribute("data-aos-easing"),e.node.removeAttribute("data-aos-duration"),e.node.removeAttribute("data-aos-delay")})},z=function(e){return e===!0||"mobile"===e&&p.default.mobile()||"phone"===e&&p.default.phone()||"tablet"===e&&p.default.tablet()||"function"==typeof e&&e()===!0},A=function(e){return j=i(j,e),w=(0,h.default)(),z(j.disable)||x?S():(document.querySelector("body").setAttribute("data-aos-easing",j.easing),document.querySelector("body").setAttribute("data-aos-duration",j.duration),document.querySelector("body").setAttribute("data-aos-delay",j.delay),"DOMContentLoaded"===j.startEvent&&["complete","interactive"].indexOf(document.readyState)>-1?O(!0):"load"===j.startEvent?window.addEventListener(j.startEvent,function(){O(!0)}):document.addEventListener(j.startEvent,function(){O(!0)}),window.addEventListener("resize",(0,f.default)(O,j.debounceDelay,!0)),window.addEventListener("orientationchange",(0,f.default)(O,j.debounceDelay,!0)),window.addEventListener("scroll",(0,u.default)(function(){(0,b.default)(w,j.once)},j.throttleDelay)),j.disableMutationObserver||(0,d.default)("[data-aos]",_),w)};e.exports={init:A,refresh:O,refreshHard:_}},function(e,t){},,,,,function(e,t){(function(t){"use strict";function n(e,t,n){function o(t){var n=b,o=v;return b=v=void 0,k=t,g=e.apply(o,n)}function r(e){return k=e,h=setTimeout(s,t),_?o(e):g}function a(e){var n=e-w,o=e-k,i=t-n;return S?j(i,y-o):i}function c(e){var n=e-w,o=e-k;return void 0===w||n>=t||n<0||S&&o>=y}function s(){var e=O();return c(e)?d(e):void(h=setTimeout(s,a(e)))}function d(e){return h=void 0,z&&b?o(e):(b=v=void 0,g)}function l(){void 0!==h&&clearTimeout(h),k=0,b=w=v=h=void 0}function p(){return void 0===h?g:d(O())}function m(){var e=O(),n=c(e);if(b=arguments,v=this,w=e,n){if(void 0===h)return r(w);if(S)return h=setTimeout(s,t),o(w)}return void 0===h&&(h=setTimeout(s,t)),g}var b,v,y,g,h,w,k=0,_=!1,S=!1,z=!0;if("function"!=typeof e)throw new TypeError(f);return t=u(t)||0,i(n)&&(_=!!n.leading,S="maxWait"in n,y=S?x(u(n.maxWait)||0,t):y,z="trailing"in n?!!n.trailing:z),m.cancel=l,m.flush=p,m}function o(e,t,o){var r=!0,a=!0;if("function"!=typeof e)throw new TypeError(f);return i(o)&&(r="leading"in o?!!o.leading:r,a="trailing"in o?!!o.trailing:a),n(e,t,{leading:r,maxWait:t,trailing:a})}function i(e){var t="undefined"==typeof e?"undefined":c(e);return!!e&&("object"==t||"function"==t)}function r(e){return!!e&&"object"==("undefined"==typeof e?"undefined":c(e))}function a(e){return"symbol"==("undefined"==typeof e?"undefined":c(e))||r(e)&&k.call(e)==d}function u(e){if("number"==typeof e)return e;if(a(e))return s;if(i(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=i(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(l,"");var n=m.test(e);return n||b.test(e)?v(e.slice(2),n?2:8):p.test(e)?s:+e}var c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},f="Expected a function",s=NaN,d="[object Symbol]",l=/^\s+|\s+$/g,p=/^[-+]0x[0-9a-f]+$/i,m=/^0b[01]+$/i,b=/^0o[0-7]+$/i,v=parseInt,y="object"==("undefined"==typeof t?"undefined":c(t))&&t&&t.Object===Object&&t,g="object"==("undefined"==typeof self?"undefined":c(self))&&self&&self.Object===Object&&self,h=y||g||Function("return this")(),w=Object.prototype,k=w.toString,x=Math.max,j=Math.min,O=function(){return h.Date.now()};e.exports=o}).call(t,function(){return this}())},function(e,t){(function(t){"use strict";function n(e,t,n){function i(t){var n=b,o=v;return b=v=void 0,O=t,g=e.apply(o,n)}function r(e){return O=e,h=setTimeout(s,t),_?i(e):g}function u(e){var n=e-w,o=e-O,i=t-n;return S?x(i,y-o):i}function f(e){var n=e-w,o=e-O;return void 0===w||n>=t||n<0||S&&o>=y}function s(){var e=j();return f(e)?d(e):void(h=setTimeout(s,u(e)))}function d(e){return h=void 0,z&&b?i(e):(b=v=void 0,g)}function l(){void 0!==h&&clearTimeout(h),O=0,b=w=v=h=void 0}function p(){return void 0===h?g:d(j())}function m(){var e=j(),n=f(e);if(b=arguments,v=this,w=e,n){if(void 0===h)return r(w);if(S)return h=setTimeout(s,t),i(w)}return void 0===h&&(h=setTimeout(s,t)),g}var b,v,y,g,h,w,O=0,_=!1,S=!1,z=!0;if("function"!=typeof e)throw new TypeError(c);return t=a(t)||0,o(n)&&(_=!!n.leading,S="maxWait"in n,y=S?k(a(n.maxWait)||0,t):y,z="trailing"in n?!!n.trailing:z),m.cancel=l,m.flush=p,m}function o(e){var t="undefined"==typeof e?"undefined":u(e);return!!e&&("object"==t||"function"==t)}function i(e){return!!e&&"object"==("undefined"==typeof e?"undefined":u(e))}function r(e){return"symbol"==("undefined"==typeof e?"undefined":u(e))||i(e)&&w.call(e)==s}function a(e){if("number"==typeof e)return e;if(r(e))return f;if(o(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=o(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(d,"");var n=p.test(e);return n||m.test(e)?b(e.slice(2),n?2:8):l.test(e)?f:+e}var u="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},c="Expected a function",f=NaN,s="[object Symbol]",d=/^\s+|\s+$/g,l=/^[-+]0x[0-9a-f]+$/i,p=/^0b[01]+$/i,m=/^0o[0-7]+$/i,b=parseInt,v="object"==("undefined"==typeof t?"undefined":u(t))&&t&&t.Object===Object&&t,y="object"==("undefined"==typeof self?"undefined":u(self))&&self&&self.Object===Object&&self,g=v||y||Function("return this")(),h=Object.prototype,w=h.toString,k=Math.max,x=Math.min,j=function(){return g.Date.now()};e.exports=n}).call(t,function(){return this}())},function(e,t){"use strict";function n(e,t){var n=new r(o);a=t,n.observe(i.documentElement,{childList:!0,subtree:!0,removedNodes:!0})}function o(e){e&&e.forEach(function(e){var t=Array.prototype.slice.call(e.addedNodes),n=Array.prototype.slice.call(e.removedNodes),o=t.concat(n).filter(function(e){return e.hasAttribute&&e.hasAttribute("data-aos")}).length;o&&a()})}Object.defineProperty(t,"__esModule",{value:!0});var i=window.document,r=window.MutationObserver||window.WebKitMutationObserver||window.MozMutationObserver,a=function(){};t.default=n},function(e,t){"use strict";function n(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(){return navigator.userAgent||navigator.vendor||window.opera||""}Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(e,t){for(var n=0;ne.position?e.node.classList.add("aos-animate"):"undefined"!=typeof o&&("false"===o||!n&&"true"!==o)&&e.node.classList.remove("aos-animate")},o=function(e,t){var o=window.pageYOffset,i=window.innerHeight;e.forEach(function(e,r){n(e,i+o,t)})};t.default=o},function(e,t,n){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=n(12),r=o(i),a=function(e,t){return e.forEach(function(e,n){e.node.classList.add("aos-init"),e.position=(0,r.default)(e.node,t.offset)}),e};t.default=a},function(e,t,n){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=n(13),r=o(i),a=function(e,t){var n=0,o=0,i=window.innerHeight,a={offset:e.getAttribute("data-aos-offset"),anchor:e.getAttribute("data-aos-anchor"),anchorPlacement:e.getAttribute("data-aos-anchor-placement")};switch(a.offset&&!isNaN(a.offset)&&(o=parseInt(a.offset)),a.anchor&&document.querySelectorAll(a.anchor)&&(e=document.querySelectorAll(a.anchor)[0]),n=(0,r.default)(e).top,a.anchorPlacement){case"top-bottom":break;case"center-bottom":n+=e.offsetHeight/2;break;case"bottom-bottom":n+=e.offsetHeight;break;case"top-center":n+=i/2;break;case"bottom-center":n+=i/2+e.offsetHeight;break;case"center-center":n+=i/2+e.offsetHeight/2;break;case"top-top":n+=i;break;case"bottom-top":n+=e.offsetHeight+i;break;case"center-top":n+=e.offsetHeight/2+i}return a.anchorPlacement||a.offset||isNaN(t)||(o=t),n+o};t.default=a},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=function(e){for(var t=0,n=0;e&&!isNaN(e.offsetLeft)&&!isNaN(e.offsetTop);)t+=e.offsetLeft-("BODY"!=e.tagName?e.scrollLeft:0),n+=e.offsetTop-("BODY"!=e.tagName?e.scrollTop:0),e=e.offsetParent;return{top:n,left:t}};t.default=n},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=function(e){return e=e||document.querySelectorAll("[data-aos]"),Array.prototype.map.call(e,function(e){return{node:e}})};t.default=n}])}); -------------------------------------------------------------------------------- /Publish/plugins/themify-icons/themify-icons.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'themify'; 3 | src: url('fonts/themify.eot?-fvbane'); 4 | src: url('fonts/themify.eot?#iefix-fvbane') format('embedded-opentype'), 5 | url('fonts/themify.woff?-fvbane') format('woff'), 6 | url('fonts/themify.ttf?-fvbane') format('truetype'), 7 | url('fonts/themify.svg?-fvbane#themify') format('svg'); 8 | font-weight: normal; 9 | font-style: normal; 10 | } 11 | 12 | [class^="ti-"], 13 | [class*=" ti-"] { 14 | font-family: 'themify'; 15 | speak: none; 16 | font-style: normal; 17 | font-weight: normal; 18 | font-variant: normal; 19 | text-transform: none; 20 | line-height: 1; 21 | 22 | /* Better Font Rendering =========== */ 23 | -webkit-font-smoothing: antialiased; 24 | -moz-osx-font-smoothing: grayscale; 25 | } 26 | 27 | .ti-wand:before { 28 | content: "\e600"; 29 | } 30 | 31 | .ti-volume:before { 32 | content: "\e601"; 33 | } 34 | 35 | .ti-user:before { 36 | content: "\e602"; 37 | } 38 | 39 | .ti-unlock:before { 40 | content: "\e603"; 41 | } 42 | 43 | .ti-unlink:before { 44 | content: "\e604"; 45 | } 46 | 47 | .ti-trash:before { 48 | content: "\e605"; 49 | } 50 | 51 | .ti-thought:before { 52 | content: "\e606"; 53 | } 54 | 55 | .ti-target:before { 56 | content: "\e607"; 57 | } 58 | 59 | .ti-tag:before { 60 | content: "\e608"; 61 | } 62 | 63 | .ti-tablet:before { 64 | content: "\e609"; 65 | } 66 | 67 | .ti-star:before { 68 | content: "\e60a"; 69 | } 70 | 71 | .ti-spray:before { 72 | content: "\e60b"; 73 | } 74 | 75 | .ti-signal:before { 76 | content: "\e60c"; 77 | } 78 | 79 | .ti-shopping-cart:before { 80 | content: "\e60d"; 81 | } 82 | 83 | .ti-shopping-cart-full:before { 84 | content: "\e60e"; 85 | } 86 | 87 | .ti-settings:before { 88 | content: "\e60f"; 89 | } 90 | 91 | .ti-search:before { 92 | content: "\e610"; 93 | } 94 | 95 | .ti-zoom-in:before { 96 | content: "\e611"; 97 | } 98 | 99 | .ti-zoom-out:before { 100 | content: "\e612"; 101 | } 102 | 103 | .ti-cut:before { 104 | content: "\e613"; 105 | } 106 | 107 | .ti-ruler:before { 108 | content: "\e614"; 109 | } 110 | 111 | .ti-ruler-pencil:before { 112 | content: "\e615"; 113 | } 114 | 115 | .ti-ruler-alt:before { 116 | content: "\e616"; 117 | } 118 | 119 | .ti-bookmark:before { 120 | content: "\e617"; 121 | } 122 | 123 | .ti-bookmark-alt:before { 124 | content: "\e618"; 125 | } 126 | 127 | .ti-reload:before { 128 | content: "\e619"; 129 | } 130 | 131 | .ti-plus:before { 132 | content: "\e61a"; 133 | } 134 | 135 | .ti-pin:before { 136 | content: "\e61b"; 137 | } 138 | 139 | .ti-pencil:before { 140 | content: "\e61c"; 141 | } 142 | 143 | .ti-pencil-alt:before { 144 | content: "\e61d"; 145 | } 146 | 147 | .ti-paint-roller:before { 148 | content: "\e61e"; 149 | } 150 | 151 | .ti-paint-bucket:before { 152 | content: "\e61f"; 153 | } 154 | 155 | .ti-na:before { 156 | content: "\e620"; 157 | } 158 | 159 | .ti-mobile:before { 160 | content: "\e621"; 161 | } 162 | 163 | .ti-minus:before { 164 | content: "\e622"; 165 | } 166 | 167 | .ti-medall:before { 168 | content: "\e623"; 169 | } 170 | 171 | .ti-medall-alt:before { 172 | content: "\e624"; 173 | } 174 | 175 | .ti-marker:before { 176 | content: "\e625"; 177 | } 178 | 179 | .ti-marker-alt:before { 180 | content: "\e626"; 181 | } 182 | 183 | .ti-arrow-up:before { 184 | content: "\e627"; 185 | } 186 | 187 | .ti-arrow-right:before { 188 | content: "\e628"; 189 | } 190 | 191 | .ti-arrow-left:before { 192 | content: "\e629"; 193 | } 194 | 195 | .ti-arrow-down:before { 196 | content: "\e62a"; 197 | } 198 | 199 | .ti-lock:before { 200 | content: "\e62b"; 201 | } 202 | 203 | .ti-location-arrow:before { 204 | content: "\e62c"; 205 | } 206 | 207 | .ti-link:before { 208 | content: "\e62d"; 209 | } 210 | 211 | .ti-layout:before { 212 | content: "\e62e"; 213 | } 214 | 215 | .ti-layers:before { 216 | content: "\e62f"; 217 | } 218 | 219 | .ti-layers-alt:before { 220 | content: "\e630"; 221 | } 222 | 223 | .ti-key:before { 224 | content: "\e631"; 225 | } 226 | 227 | .ti-import:before { 228 | content: "\e632"; 229 | } 230 | 231 | .ti-image:before { 232 | content: "\e633"; 233 | } 234 | 235 | .ti-heart:before { 236 | content: "\e634"; 237 | } 238 | 239 | .ti-heart-broken:before { 240 | content: "\e635"; 241 | } 242 | 243 | .ti-hand-stop:before { 244 | content: "\e636"; 245 | } 246 | 247 | .ti-hand-open:before { 248 | content: "\e637"; 249 | } 250 | 251 | .ti-hand-drag:before { 252 | content: "\e638"; 253 | } 254 | 255 | .ti-folder:before { 256 | content: "\e639"; 257 | } 258 | 259 | .ti-flag:before { 260 | content: "\e63a"; 261 | } 262 | 263 | .ti-flag-alt:before { 264 | content: "\e63b"; 265 | } 266 | 267 | .ti-flag-alt-2:before { 268 | content: "\e63c"; 269 | } 270 | 271 | .ti-eye:before { 272 | content: "\e63d"; 273 | } 274 | 275 | .ti-export:before { 276 | content: "\e63e"; 277 | } 278 | 279 | .ti-exchange-vertical:before { 280 | content: "\e63f"; 281 | } 282 | 283 | .ti-desktop:before { 284 | content: "\e640"; 285 | } 286 | 287 | .ti-cup:before { 288 | content: "\e641"; 289 | } 290 | 291 | .ti-crown:before { 292 | content: "\e642"; 293 | } 294 | 295 | .ti-comments:before { 296 | content: "\e643"; 297 | } 298 | 299 | .ti-comment:before { 300 | content: "\e644"; 301 | } 302 | 303 | .ti-comment-alt:before { 304 | content: "\e645"; 305 | } 306 | 307 | .ti-close:before { 308 | content: "\e646"; 309 | } 310 | 311 | .ti-clip:before { 312 | content: "\e647"; 313 | } 314 | 315 | .ti-angle-up:before { 316 | content: "\e648"; 317 | } 318 | 319 | .ti-angle-right:before { 320 | content: "\e649"; 321 | } 322 | 323 | .ti-angle-left:before { 324 | content: "\e64a"; 325 | } 326 | 327 | .ti-angle-down:before { 328 | content: "\e64b"; 329 | } 330 | 331 | .ti-check:before { 332 | content: "\e64c"; 333 | } 334 | 335 | .ti-check-box:before { 336 | content: "\e64d"; 337 | } 338 | 339 | .ti-camera:before { 340 | content: "\e64e"; 341 | } 342 | 343 | .ti-announcement:before { 344 | content: "\e64f"; 345 | } 346 | 347 | .ti-brush:before { 348 | content: "\e650"; 349 | } 350 | 351 | .ti-briefcase:before { 352 | content: "\e651"; 353 | } 354 | 355 | .ti-bolt:before { 356 | content: "\e652"; 357 | } 358 | 359 | .ti-bolt-alt:before { 360 | content: "\e653"; 361 | } 362 | 363 | .ti-blackboard:before { 364 | content: "\e654"; 365 | } 366 | 367 | .ti-bag:before { 368 | content: "\e655"; 369 | } 370 | 371 | .ti-move:before { 372 | content: "\e656"; 373 | } 374 | 375 | .ti-arrows-vertical:before { 376 | content: "\e657"; 377 | } 378 | 379 | .ti-arrows-horizontal:before { 380 | content: "\e658"; 381 | } 382 | 383 | .ti-fullscreen:before { 384 | content: "\e659"; 385 | } 386 | 387 | .ti-arrow-top-right:before { 388 | content: "\e65a"; 389 | } 390 | 391 | .ti-arrow-top-left:before { 392 | content: "\e65b"; 393 | } 394 | 395 | .ti-arrow-circle-up:before { 396 | content: "\e65c"; 397 | } 398 | 399 | .ti-arrow-circle-right:before { 400 | content: "\e65d"; 401 | } 402 | 403 | .ti-arrow-circle-left:before { 404 | content: "\e65e"; 405 | } 406 | 407 | .ti-arrow-circle-down:before { 408 | content: "\e65f"; 409 | } 410 | 411 | .ti-angle-double-up:before { 412 | content: "\e660"; 413 | } 414 | 415 | .ti-angle-double-right:before { 416 | content: "\e661"; 417 | } 418 | 419 | .ti-angle-double-left:before { 420 | content: "\e662"; 421 | } 422 | 423 | .ti-angle-double-down:before { 424 | content: "\e663"; 425 | } 426 | 427 | .ti-zip:before { 428 | content: "\e664"; 429 | } 430 | 431 | .ti-world:before { 432 | content: "\e665"; 433 | } 434 | 435 | .ti-wheelchair:before { 436 | content: "\e666"; 437 | } 438 | 439 | .ti-view-list:before { 440 | content: "\e667"; 441 | } 442 | 443 | .ti-view-list-alt:before { 444 | content: "\e668"; 445 | } 446 | 447 | .ti-view-grid:before { 448 | content: "\e669"; 449 | } 450 | 451 | .ti-uppercase:before { 452 | content: "\e66a"; 453 | } 454 | 455 | .ti-upload:before { 456 | content: "\e66b"; 457 | } 458 | 459 | .ti-underline:before { 460 | content: "\e66c"; 461 | } 462 | 463 | .ti-truck:before { 464 | content: "\e66d"; 465 | } 466 | 467 | .ti-timer:before { 468 | content: "\e66e"; 469 | } 470 | 471 | .ti-ticket:before { 472 | content: "\e66f"; 473 | } 474 | 475 | .ti-thumb-up:before { 476 | content: "\e670"; 477 | } 478 | 479 | .ti-thumb-down:before { 480 | content: "\e671"; 481 | } 482 | 483 | .ti-text:before { 484 | content: "\e672"; 485 | } 486 | 487 | .ti-stats-up:before { 488 | content: "\e673"; 489 | } 490 | 491 | .ti-stats-down:before { 492 | content: "\e674"; 493 | } 494 | 495 | .ti-split-v:before { 496 | content: "\e675"; 497 | } 498 | 499 | .ti-split-h:before { 500 | content: "\e676"; 501 | } 502 | 503 | .ti-smallcap:before { 504 | content: "\e677"; 505 | } 506 | 507 | .ti-shine:before { 508 | content: "\e678"; 509 | } 510 | 511 | .ti-shift-right:before { 512 | content: "\e679"; 513 | } 514 | 515 | .ti-shift-left:before { 516 | content: "\e67a"; 517 | } 518 | 519 | .ti-shield:before { 520 | content: "\e67b"; 521 | } 522 | 523 | .ti-notepad:before { 524 | content: "\e67c"; 525 | } 526 | 527 | .ti-server:before { 528 | content: "\e67d"; 529 | } 530 | 531 | .ti-quote-right:before { 532 | content: "\e67e"; 533 | } 534 | 535 | .ti-quote-left:before { 536 | content: "\e67f"; 537 | } 538 | 539 | .ti-pulse:before { 540 | content: "\e680"; 541 | } 542 | 543 | .ti-printer:before { 544 | content: "\e681"; 545 | } 546 | 547 | .ti-power-off:before { 548 | content: "\e682"; 549 | } 550 | 551 | .ti-plug:before { 552 | content: "\e683"; 553 | } 554 | 555 | .ti-pie-chart:before { 556 | content: "\e684"; 557 | } 558 | 559 | .ti-paragraph:before { 560 | content: "\e685"; 561 | } 562 | 563 | .ti-panel:before { 564 | content: "\e686"; 565 | } 566 | 567 | .ti-package:before { 568 | content: "\e687"; 569 | } 570 | 571 | .ti-music:before { 572 | content: "\e688"; 573 | } 574 | 575 | .ti-music-alt:before { 576 | content: "\e689"; 577 | } 578 | 579 | .ti-mouse:before { 580 | content: "\e68a"; 581 | } 582 | 583 | .ti-mouse-alt:before { 584 | content: "\e68b"; 585 | } 586 | 587 | .ti-money:before { 588 | content: "\e68c"; 589 | } 590 | 591 | .ti-microphone:before { 592 | content: "\e68d"; 593 | } 594 | 595 | .ti-menu:before { 596 | content: "\e68e"; 597 | } 598 | 599 | .ti-menu-alt:before { 600 | content: "\e68f"; 601 | } 602 | 603 | .ti-map:before { 604 | content: "\e690"; 605 | } 606 | 607 | .ti-map-alt:before { 608 | content: "\e691"; 609 | } 610 | 611 | .ti-loop:before { 612 | content: "\e692"; 613 | } 614 | 615 | .ti-location-pin:before { 616 | content: "\e693"; 617 | } 618 | 619 | .ti-list:before { 620 | content: "\e694"; 621 | } 622 | 623 | .ti-light-bulb:before { 624 | content: "\e695"; 625 | } 626 | 627 | .ti-Italic:before { 628 | content: "\e696"; 629 | } 630 | 631 | .ti-info:before { 632 | content: "\e697"; 633 | } 634 | 635 | .ti-infinite:before { 636 | content: "\e698"; 637 | } 638 | 639 | .ti-id-badge:before { 640 | content: "\e699"; 641 | } 642 | 643 | .ti-hummer:before { 644 | content: "\e69a"; 645 | } 646 | 647 | .ti-home:before { 648 | content: "\e69b"; 649 | } 650 | 651 | .ti-help:before { 652 | content: "\e69c"; 653 | } 654 | 655 | .ti-headphone:before { 656 | content: "\e69d"; 657 | } 658 | 659 | .ti-harddrives:before { 660 | content: "\e69e"; 661 | } 662 | 663 | .ti-harddrive:before { 664 | content: "\e69f"; 665 | } 666 | 667 | .ti-gift:before { 668 | content: "\e6a0"; 669 | } 670 | 671 | .ti-game:before { 672 | content: "\e6a1"; 673 | } 674 | 675 | .ti-filter:before { 676 | content: "\e6a2"; 677 | } 678 | 679 | .ti-files:before { 680 | content: "\e6a3"; 681 | } 682 | 683 | .ti-file:before { 684 | content: "\e6a4"; 685 | } 686 | 687 | .ti-eraser:before { 688 | content: "\e6a5"; 689 | } 690 | 691 | .ti-envelope:before { 692 | content: "\e6a6"; 693 | } 694 | 695 | .ti-download:before { 696 | content: "\e6a7"; 697 | } 698 | 699 | .ti-direction:before { 700 | content: "\e6a8"; 701 | } 702 | 703 | .ti-direction-alt:before { 704 | content: "\e6a9"; 705 | } 706 | 707 | .ti-dashboard:before { 708 | content: "\e6aa"; 709 | } 710 | 711 | .ti-control-stop:before { 712 | content: "\e6ab"; 713 | } 714 | 715 | .ti-control-shuffle:before { 716 | content: "\e6ac"; 717 | } 718 | 719 | .ti-control-play:before { 720 | content: "\e6ad"; 721 | } 722 | 723 | .ti-control-pause:before { 724 | content: "\e6ae"; 725 | } 726 | 727 | .ti-control-forward:before { 728 | content: "\e6af"; 729 | } 730 | 731 | .ti-control-backward:before { 732 | content: "\e6b0"; 733 | } 734 | 735 | .ti-cloud:before { 736 | content: "\e6b1"; 737 | } 738 | 739 | .ti-cloud-up:before { 740 | content: "\e6b2"; 741 | } 742 | 743 | .ti-cloud-down:before { 744 | content: "\e6b3"; 745 | } 746 | 747 | .ti-clipboard:before { 748 | content: "\e6b4"; 749 | } 750 | 751 | .ti-car:before { 752 | content: "\e6b5"; 753 | } 754 | 755 | .ti-calendar:before { 756 | content: "\e6b6"; 757 | } 758 | 759 | .ti-book:before { 760 | content: "\e6b7"; 761 | } 762 | 763 | .ti-bell:before { 764 | content: "\e6b8"; 765 | } 766 | 767 | .ti-basketball:before { 768 | content: "\e6b9"; 769 | } 770 | 771 | .ti-bar-chart:before { 772 | content: "\e6ba"; 773 | } 774 | 775 | .ti-bar-chart-alt:before { 776 | content: "\e6bb"; 777 | } 778 | 779 | .ti-back-right:before { 780 | content: "\e6bc"; 781 | } 782 | 783 | .ti-back-left:before { 784 | content: "\e6bd"; 785 | } 786 | 787 | .ti-arrows-corner:before { 788 | content: "\e6be"; 789 | } 790 | 791 | .ti-archive:before { 792 | content: "\e6bf"; 793 | } 794 | 795 | .ti-anchor:before { 796 | content: "\e6c0"; 797 | } 798 | 799 | .ti-align-right:before { 800 | content: "\e6c1"; 801 | } 802 | 803 | .ti-align-left:before { 804 | content: "\e6c2"; 805 | } 806 | 807 | .ti-align-justify:before { 808 | content: "\e6c3"; 809 | } 810 | 811 | .ti-align-center:before { 812 | content: "\e6c4"; 813 | } 814 | 815 | .ti-alert:before { 816 | content: "\e6c5"; 817 | } 818 | 819 | .ti-alarm-clock:before { 820 | content: "\e6c6"; 821 | } 822 | 823 | .ti-agenda:before { 824 | content: "\e6c7"; 825 | } 826 | 827 | .ti-write:before { 828 | content: "\e6c8"; 829 | } 830 | 831 | .ti-window:before { 832 | content: "\e6c9"; 833 | } 834 | 835 | .ti-widgetized:before { 836 | content: "\e6ca"; 837 | } 838 | 839 | .ti-widget:before { 840 | content: "\e6cb"; 841 | } 842 | 843 | .ti-widget-alt:before { 844 | content: "\e6cc"; 845 | } 846 | 847 | .ti-wallet:before { 848 | content: "\e6cd"; 849 | } 850 | 851 | .ti-video-clapper:before { 852 | content: "\e6ce"; 853 | } 854 | 855 | .ti-video-camera:before { 856 | content: "\e6cf"; 857 | } 858 | 859 | .ti-vector:before { 860 | content: "\e6d0"; 861 | } 862 | 863 | .ti-themify-logo:before { 864 | content: "\e6d1"; 865 | } 866 | 867 | .ti-themify-favicon:before { 868 | content: "\e6d2"; 869 | } 870 | 871 | .ti-themify-favicon-alt:before { 872 | content: "\e6d3"; 873 | } 874 | 875 | .ti-support:before { 876 | content: "\e6d4"; 877 | } 878 | 879 | .ti-stamp:before { 880 | content: "\e6d5"; 881 | } 882 | 883 | .ti-split-v-alt:before { 884 | content: "\e6d6"; 885 | } 886 | 887 | .ti-slice:before { 888 | content: "\e6d7"; 889 | } 890 | 891 | .ti-shortcode:before { 892 | content: "\e6d8"; 893 | } 894 | 895 | .ti-shift-right-alt:before { 896 | content: "\e6d9"; 897 | } 898 | 899 | .ti-shift-left-alt:before { 900 | content: "\e6da"; 901 | } 902 | 903 | .ti-ruler-alt-2:before { 904 | content: "\e6db"; 905 | } 906 | 907 | .ti-receipt:before { 908 | content: "\e6dc"; 909 | } 910 | 911 | .ti-pin2:before { 912 | content: "\e6dd"; 913 | } 914 | 915 | .ti-pin-alt:before { 916 | content: "\e6de"; 917 | } 918 | 919 | .ti-pencil-alt2:before { 920 | content: "\e6df"; 921 | } 922 | 923 | .ti-palette:before { 924 | content: "\e6e0"; 925 | } 926 | 927 | .ti-more:before { 928 | content: "\e6e1"; 929 | } 930 | 931 | .ti-more-alt:before { 932 | content: "\e6e2"; 933 | } 934 | 935 | .ti-microphone-alt:before { 936 | content: "\e6e3"; 937 | } 938 | 939 | .ti-magnet:before { 940 | content: "\e6e4"; 941 | } 942 | 943 | .ti-line-double:before { 944 | content: "\e6e5"; 945 | } 946 | 947 | .ti-line-dotted:before { 948 | content: "\e6e6"; 949 | } 950 | 951 | .ti-line-dashed:before { 952 | content: "\e6e7"; 953 | } 954 | 955 | .ti-layout-width-full:before { 956 | content: "\e6e8"; 957 | } 958 | 959 | .ti-layout-width-default:before { 960 | content: "\e6e9"; 961 | } 962 | 963 | .ti-layout-width-default-alt:before { 964 | content: "\e6ea"; 965 | } 966 | 967 | .ti-layout-tab:before { 968 | content: "\e6eb"; 969 | } 970 | 971 | .ti-layout-tab-window:before { 972 | content: "\e6ec"; 973 | } 974 | 975 | .ti-layout-tab-v:before { 976 | content: "\e6ed"; 977 | } 978 | 979 | .ti-layout-tab-min:before { 980 | content: "\e6ee"; 981 | } 982 | 983 | .ti-layout-slider:before { 984 | content: "\e6ef"; 985 | } 986 | 987 | .ti-layout-slider-alt:before { 988 | content: "\e6f0"; 989 | } 990 | 991 | .ti-layout-sidebar-right:before { 992 | content: "\e6f1"; 993 | } 994 | 995 | .ti-layout-sidebar-none:before { 996 | content: "\e6f2"; 997 | } 998 | 999 | .ti-layout-sidebar-left:before { 1000 | content: "\e6f3"; 1001 | } 1002 | 1003 | .ti-layout-placeholder:before { 1004 | content: "\e6f4"; 1005 | } 1006 | 1007 | .ti-layout-menu:before { 1008 | content: "\e6f5"; 1009 | } 1010 | 1011 | .ti-layout-menu-v:before { 1012 | content: "\e6f6"; 1013 | } 1014 | 1015 | .ti-layout-menu-separated:before { 1016 | content: "\e6f7"; 1017 | } 1018 | 1019 | .ti-layout-menu-full:before { 1020 | content: "\e6f8"; 1021 | } 1022 | 1023 | .ti-layout-media-right-alt:before { 1024 | content: "\e6f9"; 1025 | } 1026 | 1027 | .ti-layout-media-right:before { 1028 | content: "\e6fa"; 1029 | } 1030 | 1031 | .ti-layout-media-overlay:before { 1032 | content: "\e6fb"; 1033 | } 1034 | 1035 | .ti-layout-media-overlay-alt:before { 1036 | content: "\e6fc"; 1037 | } 1038 | 1039 | .ti-layout-media-overlay-alt-2:before { 1040 | content: "\e6fd"; 1041 | } 1042 | 1043 | .ti-layout-media-left-alt:before { 1044 | content: "\e6fe"; 1045 | } 1046 | 1047 | .ti-layout-media-left:before { 1048 | content: "\e6ff"; 1049 | } 1050 | 1051 | .ti-layout-media-center-alt:before { 1052 | content: "\e700"; 1053 | } 1054 | 1055 | .ti-layout-media-center:before { 1056 | content: "\e701"; 1057 | } 1058 | 1059 | .ti-layout-list-thumb:before { 1060 | content: "\e702"; 1061 | } 1062 | 1063 | .ti-layout-list-thumb-alt:before { 1064 | content: "\e703"; 1065 | } 1066 | 1067 | .ti-layout-list-post:before { 1068 | content: "\e704"; 1069 | } 1070 | 1071 | .ti-layout-list-large-image:before { 1072 | content: "\e705"; 1073 | } 1074 | 1075 | .ti-layout-line-solid:before { 1076 | content: "\e706"; 1077 | } 1078 | 1079 | .ti-layout-grid4:before { 1080 | content: "\e707"; 1081 | } 1082 | 1083 | .ti-layout-grid3:before { 1084 | content: "\e708"; 1085 | } 1086 | 1087 | .ti-layout-grid2:before { 1088 | content: "\e709"; 1089 | } 1090 | 1091 | .ti-layout-grid2-thumb:before { 1092 | content: "\e70a"; 1093 | } 1094 | 1095 | .ti-layout-cta-right:before { 1096 | content: "\e70b"; 1097 | } 1098 | 1099 | .ti-layout-cta-left:before { 1100 | content: "\e70c"; 1101 | } 1102 | 1103 | .ti-layout-cta-center:before { 1104 | content: "\e70d"; 1105 | } 1106 | 1107 | .ti-layout-cta-btn-right:before { 1108 | content: "\e70e"; 1109 | } 1110 | 1111 | .ti-layout-cta-btn-left:before { 1112 | content: "\e70f"; 1113 | } 1114 | 1115 | .ti-layout-column4:before { 1116 | content: "\e710"; 1117 | } 1118 | 1119 | .ti-layout-column3:before { 1120 | content: "\e711"; 1121 | } 1122 | 1123 | .ti-layout-column2:before { 1124 | content: "\e712"; 1125 | } 1126 | 1127 | .ti-layout-accordion-separated:before { 1128 | content: "\e713"; 1129 | } 1130 | 1131 | .ti-layout-accordion-merged:before { 1132 | content: "\e714"; 1133 | } 1134 | 1135 | .ti-layout-accordion-list:before { 1136 | content: "\e715"; 1137 | } 1138 | 1139 | .ti-ink-pen:before { 1140 | content: "\e716"; 1141 | } 1142 | 1143 | .ti-info-alt:before { 1144 | content: "\e717"; 1145 | } 1146 | 1147 | .ti-help-alt:before { 1148 | content: "\e718"; 1149 | } 1150 | 1151 | .ti-headphone-alt:before { 1152 | content: "\e719"; 1153 | } 1154 | 1155 | .ti-hand-point-up:before { 1156 | content: "\e71a"; 1157 | } 1158 | 1159 | .ti-hand-point-right:before { 1160 | content: "\e71b"; 1161 | } 1162 | 1163 | .ti-hand-point-left:before { 1164 | content: "\e71c"; 1165 | } 1166 | 1167 | .ti-hand-point-down:before { 1168 | content: "\e71d"; 1169 | } 1170 | 1171 | .ti-gallery:before { 1172 | content: "\e71e"; 1173 | } 1174 | 1175 | .ti-face-smile:before { 1176 | content: "\e71f"; 1177 | } 1178 | 1179 | .ti-face-sad:before { 1180 | content: "\e720"; 1181 | } 1182 | 1183 | .ti-credit-card:before { 1184 | content: "\e721"; 1185 | } 1186 | 1187 | .ti-control-skip-forward:before { 1188 | content: "\e722"; 1189 | } 1190 | 1191 | .ti-control-skip-backward:before { 1192 | content: "\e723"; 1193 | } 1194 | 1195 | .ti-control-record:before { 1196 | content: "\e724"; 1197 | } 1198 | 1199 | .ti-control-eject:before { 1200 | content: "\e725"; 1201 | } 1202 | 1203 | .ti-comments-smiley:before { 1204 | content: "\e726"; 1205 | } 1206 | 1207 | .ti-brush-alt:before { 1208 | content: "\e727"; 1209 | } 1210 | 1211 | .ti-youtube:before { 1212 | content: "\e728"; 1213 | } 1214 | 1215 | .ti-vimeo:before { 1216 | content: "\e729"; 1217 | } 1218 | 1219 | .ti-twitter:before { 1220 | content: "\e72a"; 1221 | } 1222 | 1223 | .ti-time:before { 1224 | content: "\e72b"; 1225 | } 1226 | 1227 | .ti-tumblr:before { 1228 | content: "\e72c"; 1229 | } 1230 | 1231 | .ti-skype:before { 1232 | content: "\e72d"; 1233 | } 1234 | 1235 | .ti-share:before { 1236 | content: "\e72e"; 1237 | } 1238 | 1239 | .ti-share-alt:before { 1240 | content: "\e72f"; 1241 | } 1242 | 1243 | .ti-rocket:before { 1244 | content: "\e730"; 1245 | } 1246 | 1247 | .ti-pinterest:before { 1248 | content: "\e731"; 1249 | } 1250 | 1251 | .ti-new-window:before { 1252 | content: "\e732"; 1253 | } 1254 | 1255 | .ti-microsoft:before { 1256 | content: "\e733"; 1257 | } 1258 | 1259 | .ti-list-ol:before { 1260 | content: "\e734"; 1261 | } 1262 | 1263 | .ti-linkedin:before { 1264 | content: "\e735"; 1265 | } 1266 | 1267 | .ti-layout-sidebar-2:before { 1268 | content: "\e736"; 1269 | } 1270 | 1271 | .ti-layout-grid4-alt:before { 1272 | content: "\e737"; 1273 | } 1274 | 1275 | .ti-layout-grid3-alt:before { 1276 | content: "\e738"; 1277 | } 1278 | 1279 | .ti-layout-grid2-alt:before { 1280 | content: "\e739"; 1281 | } 1282 | 1283 | .ti-layout-column4-alt:before { 1284 | content: "\e73a"; 1285 | } 1286 | 1287 | .ti-layout-column3-alt:before { 1288 | content: "\e73b"; 1289 | } 1290 | 1291 | .ti-layout-column2-alt:before { 1292 | content: "\e73c"; 1293 | } 1294 | 1295 | .ti-instagram:before { 1296 | content: "\e73d"; 1297 | } 1298 | 1299 | .ti-google:before { 1300 | content: "\e73e"; 1301 | } 1302 | 1303 | .ti-github:before { 1304 | content: "\e73f"; 1305 | } 1306 | 1307 | .ti-flickr:before { 1308 | content: "\e740"; 1309 | } 1310 | 1311 | .ti-facebook:before { 1312 | content: "\e741"; 1313 | } 1314 | 1315 | .ti-dropbox:before { 1316 | content: "\e742"; 1317 | } 1318 | 1319 | .ti-dribbble:before { 1320 | content: "\e743"; 1321 | } 1322 | 1323 | .ti-apple:before { 1324 | content: "\e744"; 1325 | } 1326 | 1327 | .ti-android:before { 1328 | content: "\e745"; 1329 | } 1330 | 1331 | .ti-save:before { 1332 | content: "\e746"; 1333 | } 1334 | 1335 | .ti-save-alt:before { 1336 | content: "\e747"; 1337 | } 1338 | 1339 | .ti-yahoo:before { 1340 | content: "\e748"; 1341 | } 1342 | 1343 | .ti-wordpress:before { 1344 | content: "\e749"; 1345 | } 1346 | 1347 | .ti-vimeo-alt:before { 1348 | content: "\e74a"; 1349 | } 1350 | 1351 | .ti-twitter-alt:before { 1352 | content: "\e74b"; 1353 | } 1354 | 1355 | .ti-tumblr-alt:before { 1356 | content: "\e74c"; 1357 | } 1358 | 1359 | .ti-trello:before { 1360 | content: "\e74d"; 1361 | } 1362 | 1363 | .ti-stack-overflow:before { 1364 | content: "\e74e"; 1365 | } 1366 | 1367 | .ti-soundcloud:before { 1368 | content: "\e74f"; 1369 | } 1370 | 1371 | .ti-sharethis:before { 1372 | content: "\e750"; 1373 | } 1374 | 1375 | .ti-sharethis-alt:before { 1376 | content: "\e751"; 1377 | } 1378 | 1379 | .ti-reddit:before { 1380 | content: "\e752"; 1381 | } 1382 | 1383 | .ti-pinterest-alt:before { 1384 | content: "\e753"; 1385 | } 1386 | 1387 | .ti-microsoft-alt:before { 1388 | content: "\e754"; 1389 | } 1390 | 1391 | .ti-linux:before { 1392 | content: "\e755"; 1393 | } 1394 | 1395 | .ti-jsfiddle:before { 1396 | content: "\e756"; 1397 | } 1398 | 1399 | .ti-joomla:before { 1400 | content: "\e757"; 1401 | } 1402 | 1403 | .ti-html5:before { 1404 | content: "\e758"; 1405 | } 1406 | 1407 | .ti-flickr-alt:before { 1408 | content: "\e759"; 1409 | } 1410 | 1411 | .ti-email:before { 1412 | content: "\e75a"; 1413 | } 1414 | 1415 | .ti-drupal:before { 1416 | content: "\e75b"; 1417 | } 1418 | 1419 | .ti-dropbox-alt:before { 1420 | content: "\e75c"; 1421 | } 1422 | 1423 | .ti-css3:before { 1424 | content: "\e75d"; 1425 | } 1426 | 1427 | .ti-rss:before { 1428 | content: "\e75e"; 1429 | } 1430 | 1431 | .ti-rss-alt:before { 1432 | content: "\e75f"; 1433 | } 1434 | -------------------------------------------------------------------------------- /Publish/plugins/slick/slick.min.js: -------------------------------------------------------------------------------- 1 | !function(i){"use strict";"function"==typeof define&&define.amd?define(["jquery"],i):"undefined"!=typeof exports?module.exports=i(require("jquery")):i(jQuery)}(function(i){"use strict";var e=window.Slick||{};(e=function(){var e=0;return function(t,o){var s,n=this;n.defaults={accessibility:!0,adaptiveHeight:!1,appendArrows:i(t),appendDots:i(t),arrows:!0,asNavFor:null,prevArrow:'',nextArrow:'',autoplay:!1,autoplaySpeed:3e3,centerMode:!1,centerPadding:"50px",cssEase:"ease",customPaging:function(e,t){return i('