forked from klovien/klovien.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
/
3-about.html
99 lines (74 loc) · 3.68 KB
/
3-about.html
1
2
3
4
5
6
7
8
9
10
11
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
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
---
layout: page
title: "About FXR(learn more about FXR)"
description: "为了让枫香染走向生活"
header-img: "img-post/fxr3.jpg"
---
<!-- Language Selector -->
<!-- <select class="sel-lang" onchange= "onLanChange(this.options[this.options.selectedIndex].value)">
<option value="0" selected> 中文 Chinese </option>
<option value="1"> 英文 English </option>
</select> -->
<!-- Chinese Version -->
<div class="zh post-container">
<!--copied from markdown -->
<blockquote><p>茶维哨苗<br>
“天染”之作</p></blockquote>
<p>Hi,我是<strong>枫香染</strong>,是贵州省黔南布依族苗族自治州惠水民间的一种印染工艺,其制品颜色和纹样古朴雅致,被誉为画在布上的青花瓷哦。</p>
<p>蜡染和枫香染都是同样用的蓝靛染料来染的,跟我们普遍看到的蓝染是一样的,但是所用的工具和材料是不一样的。</p>
<p>蜡染是用蜡刀蘸取蜡,在白布上作画作仿染,而枫香染是用毛笔蘸取风香油在白布上作画,被誉为画在土布上的青花瓷,对于手艺人的国画功底要求非常高。</p>
<p>枫香印染技艺已经有200多年的历史,在2008年入选了第二批国家级非物质文化遗产名录</p>
<p>枫香染采用老枫香树脂加入适量牛油,用文火煎熬后过滤而成的枫香油作封蜡,用毛笔蘸溶解的枫香混合油在自己织的白布上描绘图案,再用蓝靛浸染,染色完毕后用沸水脱去油脂,再用清水漂洗、晾干、碾平。由于印染品的颜色和花纹古朴、雅致,被誉为画在布上的青花瓷。由于枫香染用毛笔和枫香脂、牛油相结合使用,因没有蜡的裂纹,做出来的图案精致、清晰、漂亮 。</p>
<p>本网站为北京邮电大学枫香染非遗保护建设网站</p>
<p></p>
</div>
<!-- English Version -->
<!-- <div class="en post-container">
<blockquote><p>Yet another iOS Developer. <br>
Yet another Life-long Student.</p></blockquote>
<p>Hi, I am <strong>Baiying Qiu</strong>,you can call me <strong>BY</strong>. I am an iOS software engineer and currently working in Xiamen</p>
<p>This is my personal blog, through making Github Pages and Jekyll.My GitHub 👉 <a href="http://github.com/qiubaiying">Github·BY</a>.</p>
<p>I am a sports enthusiast, I like fitness, running and boxing.</p>
<h5>Talks</h5>
<ul>
<li><a href="https://github.com">GitHub</a></li>
<li><a href="http://jekyll.com.cn/">jekyll</a></li>
<li><a href="https://pages.github.com/">GitHub Pages</a></li>
<li><a href="https://qiubaiying.github.io">BY</a></li>
</ul>
</div> -->
<!-- Handle Language Change -->
<script type="text/javascript">
// 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();
</script>