每天只要 15 分钟,一个月就能掌握
学一点儿是一点儿,不用也不会忘
这里是三叶语学习的相关资料(持续更新中,请常来看看)。
手册类
教程类
- 十分钟掌握三叶语字母和读音(中文,English)
- 一小时掌握三叶语单词结构和基础单词
- 半小时掌握三叶语语法和简单语句
- 阅读材料
- Memrise 教程
词典类
网站类
特别说明:
因为三叶语的设计还在完善中,现在学习的内容将来可能还会有少量变化,敬请理解。
若不同文件存在不一致的地方,请以最新版本的 “三叶语词汇表” 为准,或咨询作者。
// get nodes
var $zh = document.querySelector(".zh");
var $en = document.querySelector(".en");
var $select = document.querySelector("select");
// bind hashchange event
window.addEventListener('hashchange', _render);
// handle render
function _render(){
var _hash = window.location.hash;
// en
if(_hash == "#en"){
$select.selectedIndex = 1;
$en.style.display = "block";
$zh.style.display = "none";
// zh by default
}else{
// not trigger onChange, otherwise cause a loop call.
$select.selectedIndex = 0;
$zh.style.display = "block";
$en.style.display = "none";
}
}
// handle select change
function onLanChange(index){
if(index == 0){
window.location.hash = "#zh"
}else{
window.location.hash = "#en"
}
}
// init
_render();