├── ODH_Template.zip ├── OTF Source.txt ├── README.md ├── dynamic ├── README.md ├── images │ ├── sample_001.jpg │ ├── sample_002.jpg │ ├── sample_003.jpg │ ├── sample_004.jpg │ ├── sample_005.jpg │ ├── sample_006.jpg │ └── sample_007.jpg ├── jsonp.js └── sample.apkg └── static ├── Basic(Facebook).apkg ├── Basic(Google).apkg ├── Basic(Kindle).apkg ├── Chinese_UV(zdict).apkg ├── English_Android(vocab).apkg ├── English_UV(BLUE).apkg ├── English_UV(RGB).apkg ├── English_UV(dict-helper).apkg ├── English_UV(vocab).apkg ├── README.md ├── basic-template(facebook).md └── images ├── README.md ├── template-chinese-01.jpg ├── template-dict-helper-01.jpg ├── template-dict-helper-02.jpg ├── template-english-01.jpg ├── template-english-02.jpg └── template-english-03.jpg /ODH_Template.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninja33/anki-templates/9b5baab0b9b8b620f6a204eeba73348c6f6acebe/ODH_Template.zip -------------------------------------------------------------------------------- /OTF Source.txt: -------------------------------------------------------------------------------- 1 | 总体参数: 2 | {word}: 待查的单词 3 | 4 | ## Youdao(有道) 5 | 音频地址: 6 | http://dict.youdao.com/dictvoice?audio={word}&type={type} 7 | 参数: 8 | {type}: '1': English, British 9 | '2': English, American 10 | '3': English, alternative 11 | 12 | 释义地址1: 13 | http://dict.youdao.com/fsearch?le={type}&q={word} 14 | 参数: 15 | {type}: 'eng': English, American 16 | 'fr' : French 17 | 'jap': Japanese 18 | 'ko' : Korea 19 | 20 | 释义地址2: 21 | http://m.youdao.com/dict?le={type}&q={word} 22 | 参数: 23 | {type}: 'eng': English, American 24 | 'fr' : French 25 | 'jap': Japanese 26 | 'ko' : Korea 27 | 28 | ## Baidu(百度) 29 | 音频地址: 30 | http://tts.baidu.com/text2audio?text={word}&lan={type}&ie=UTF-8 31 | 参数: 32 | {type}: 'en': English, American 33 | 'jp': Japanese" 34 | 'pt': Portuguese" 35 | 'th': Thai" 36 | 'uk': English, British 37 | 'zh': Chinese 38 | 39 | ## BaiCiZhan(百词斩) 40 | 音频地址: 41 | http://baicizhan.qiniucdn.com/word_audios/{word}.mp3 42 | 43 | 释义地址: 44 | http://mall.baicizhan.com/ws/search?w={word} 45 | 46 | ## Eudic(欧路) 47 | 释义地址: 48 | fr: http://www.frdic.com/FullMiniDictsSearch/fr/?word={word} 49 | de: http://www.godic.net/FullMiniDictsSearch/de/?word={word} 50 | es: http://www.esdict.cn/FullMiniDictsSearch/es/?word={word} 51 | 52 | ## dict.cn(海词) 53 | 释义地址: 54 | http://m.dict.cn/{word} 55 | 56 | ## Vocabulary.com 57 | 释义地址: 58 | https://www.vocabulary.com/dictionary/definition.ajax?search={word} 59 | 60 | 例句地址: 61 | https://corpus.vocabulary.com/api/1.0/examples.json?query={word}&maxResults={number}&startOffset={number}&domain={Type}&filter=0 62 | {number}: 数字。用于设定返回例句数量,或者例句偏移量 63 | 参数: 64 | {type}: 字母,用于设定例句内容的领域 65 | 'N': 新闻 66 | 'T': 技术 67 | 'B': 商业 68 | 'F': 小说 69 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Anki Dynamic Configurable Templates # 2 | 3 | This is Anki dynamic configurable note template(facebook color style) with below feture: 4 | 5 | 1. configurable checkbox to load and save configuration 6 | 2. js helper function to autoplay OTF(on the fly media) online audio 7 | 3. js helper function to hide/display hint section 8 | 4. js helper function to help customize content and highlight tag 9 | 5. version detection and update. 10 | 11 | ## Template Usage ## 12 | 13 | - You can click checkbox on head section to change option. That will be effective during one review session(iOS/Desktop version only) 14 | 15 |  16 | 17 | - You can change these options on note template's style section by true/false setting. That will be effective on all card's lifecycle. 18 | ``` 19 | //audio autoplay 20 | config.audio = false; 21 | 22 | //hide or display hint section 23 | config.fold = true; 24 | 25 | //other config might be added 26 | config.example = false; 27 | ``` 28 | - You can click notes/sentences section head(blue) to hide and display section content. 29 | 30 |  31 | 32 | ## Template Preview ## 33 | - Status with hidden notes/sentences section on/off, audio autoplay on/off and example of definition on/off. 34 |  35 |  36 | 37 | - Display hint section and show version update information at head section 38 |  39 | 40 | 41 | This Template was inspired by [ecator](https://github.com/ecator/anki-theme-basic-baidu-jp-en) 42 | 43 | --- 44 | 45 | # Anki Static Templates # 46 | 5 pre-built anki static templates(CSS), including 4 English templates & 1 Chinese template. 47 | 48 | - English Template 49 | - BLue Color 50 | - RGB 3 Colors 51 | - vocabulary.com Template 52 | - Dict Helper Template 53 | - Chinese Template 54 | - Zdict Chinese Template 55 | 56 | --- 57 | 58 | # Anki 笔记/卡片模板 # 59 | 5套用于Anki学习使用的预定义模板(CSS),含4套英语模板和1套汉语汉典模板 60 | 61 | - 英语模板 62 | - 蓝色模板 63 | - 三色模板 64 | - vocabulary.com模板 65 | - 划词制卡助手模板 66 | - 汉语模板 67 | - 汉语汉典模板 68 | 69 | --- 70 | 71 | ## Template Preview(模板预览) ## 72 | - English Blue/RBG Template(英语蓝色/三色模板) 73 | 74 |  75 |  76 | 77 | - English Vocabulary.com Template(英语vocab配色模板) 78 | 79 |  80 | 81 | - English Anki Dict Helper Template(英语Anki划词助手模板) 82 | 83 |  84 |  85 | 86 | - Chinese Zdict Template(汉语汉典模板) 87 | 88 |  89 | -------------------------------------------------------------------------------- /dynamic/README.md: -------------------------------------------------------------------------------- 1 | # Anki Dynamic Configurable Template # 2 | 3 | This is Anki dynamic configurable note template(facebook color style) with below fetures: 4 | 5 | 1. option checkbox to load and save configuration 6 | 2. js helper function to autoplay OTF(on the fly media) online audio 7 | 3. js helper function to hide/display hint section 8 | 4. js helper function to help customize content and highlight tag 9 | 5. version detection and update. 10 | 11 | ## Template Usage ## 12 | 13 | - You can click checkbox on head section to change options. This change will be effective during one review session(iOS/Desktop version only) 14 | 15 |  16 | 17 | - You can change these options on note template's style section by true/false setting. That will be effective on all card's lifecycle. 18 | ``` 19 | //audio autoplay 20 | config.audio = false; 21 | 22 | //hide or display hint section 23 | config.fold = true; 24 | 25 | //other config might be added 26 | config.example = false; 27 | ``` 28 | - You can click notes/sentences section head(blue) to hide and display section content. 29 | 30 |  31 | 32 | ## Template Preview ## 33 | - Status with hidden notes/sentences section on/off, audio autoplay on/off and example of definition on/off. 34 |  35 |  36 | 37 | - Display hint section and show version update information at head section 38 |  39 | 40 | This Template was inspired by [ecator](https://github.com/ecator/anki-theme-basic-baidu-jp-en) 41 | -------------------------------------------------------------------------------- /dynamic/images/sample_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninja33/anki-templates/9b5baab0b9b8b620f6a204eeba73348c6f6acebe/dynamic/images/sample_001.jpg -------------------------------------------------------------------------------- /dynamic/images/sample_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninja33/anki-templates/9b5baab0b9b8b620f6a204eeba73348c6f6acebe/dynamic/images/sample_002.jpg -------------------------------------------------------------------------------- /dynamic/images/sample_003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninja33/anki-templates/9b5baab0b9b8b620f6a204eeba73348c6f6acebe/dynamic/images/sample_003.jpg -------------------------------------------------------------------------------- /dynamic/images/sample_004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninja33/anki-templates/9b5baab0b9b8b620f6a204eeba73348c6f6acebe/dynamic/images/sample_004.jpg -------------------------------------------------------------------------------- /dynamic/images/sample_005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninja33/anki-templates/9b5baab0b9b8b620f6a204eeba73348c6f6acebe/dynamic/images/sample_005.jpg -------------------------------------------------------------------------------- /dynamic/images/sample_006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninja33/anki-templates/9b5baab0b9b8b620f6a204eeba73348c6f6acebe/dynamic/images/sample_006.jpg -------------------------------------------------------------------------------- /dynamic/images/sample_007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninja33/anki-templates/9b5baab0b9b8b620f6a204eeba73348c6f6acebe/dynamic/images/sample_007.jpg -------------------------------------------------------------------------------- /dynamic/jsonp.js: -------------------------------------------------------------------------------- 1 | loadRemote({version:"1.0"}) 2 | -------------------------------------------------------------------------------- /dynamic/sample.apkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninja33/anki-templates/9b5baab0b9b8b620f6a204eeba73348c6f6acebe/dynamic/sample.apkg -------------------------------------------------------------------------------- /static/Basic(Facebook).apkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninja33/anki-templates/9b5baab0b9b8b620f6a204eeba73348c6f6acebe/static/Basic(Facebook).apkg -------------------------------------------------------------------------------- /static/Basic(Google).apkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninja33/anki-templates/9b5baab0b9b8b620f6a204eeba73348c6f6acebe/static/Basic(Google).apkg -------------------------------------------------------------------------------- /static/Basic(Kindle).apkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninja33/anki-templates/9b5baab0b9b8b620f6a204eeba73348c6f6acebe/static/Basic(Kindle).apkg -------------------------------------------------------------------------------- /static/Chinese_UV(zdict).apkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninja33/anki-templates/9b5baab0b9b8b620f6a204eeba73348c6f6acebe/static/Chinese_UV(zdict).apkg -------------------------------------------------------------------------------- /static/English_Android(vocab).apkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninja33/anki-templates/9b5baab0b9b8b620f6a204eeba73348c6f6acebe/static/English_Android(vocab).apkg -------------------------------------------------------------------------------- /static/English_UV(BLUE).apkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninja33/anki-templates/9b5baab0b9b8b620f6a204eeba73348c6f6acebe/static/English_UV(BLUE).apkg -------------------------------------------------------------------------------- /static/English_UV(RGB).apkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninja33/anki-templates/9b5baab0b9b8b620f6a204eeba73348c6f6acebe/static/English_UV(RGB).apkg -------------------------------------------------------------------------------- /static/English_UV(dict-helper).apkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninja33/anki-templates/9b5baab0b9b8b620f6a204eeba73348c6f6acebe/static/English_UV(dict-helper).apkg -------------------------------------------------------------------------------- /static/English_UV(vocab).apkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninja33/anki-templates/9b5baab0b9b8b620f6a204eeba73348c6f6acebe/static/English_UV(vocab).apkg -------------------------------------------------------------------------------- /static/README.md: -------------------------------------------------------------------------------- 1 | # Anki Static Templates # 2 | 5 pre-built anki static templates(CSS), including 4 English templates & 1 Chinese template. 3 | 4 | - English Template 5 | - BLue Color 6 | - RGB 3 Colors 7 | - vocabulary.com Template 8 | - Dict Helper Template 9 | - Chinese Template 10 | - Zdict Chinese Template 11 | 12 | --- 13 | 14 | # Anki 笔记/卡片模板 # 15 | 5套用于Anki学习使用的预定义模板(CSS),含4套英语模板和1套汉语汉典模板 16 | 17 | - 英语模板 18 | - 蓝色模板 19 | - 三色模板 20 | - vocabulary.com模板 21 | - 划词制卡助手模板 22 | - 汉语模板 23 | - 汉语汉典模板 24 | 25 | --- 26 | 27 | ## Template Preview(模板预览) ## 28 | - English Blue/RBG Template(英语蓝色/三色模板) 29 | 30 |  31 |  32 | 33 | - English Vocabulary.com Template(英语vocab配色模板) 34 | 35 |  36 | 37 | - English Anki Dict Helper Template(英语Anki划词助手模板) 38 | 39 |  40 |  41 | 42 | - Chinese Zdict Template(汉语汉典模板) 43 | 44 |  -------------------------------------------------------------------------------- /static/basic-template(facebook).md: -------------------------------------------------------------------------------- 1 | #Anki 基本模板 Facebook样式 2 | 3 | ## 正面模板(Front Template) 4 | ```html 5 | 6 |
7 | 8 | 9 |