-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevents2020.html
More file actions
295 lines (291 loc) · 14.5 KB
/
events2020.html
File metadata and controls
295 lines (291 loc) · 14.5 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
<!DOCTYPE html>
<html>
<head>
<title>Canada-China Cultural Development Association: 2020 Events</title>
<link rel="stylesheet" href="CSS/events2020.css">
<script type="text/javascript" src="Script/jquery-3.5.1.min.js"></script>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
</head>
<body>
<div id="windowSizeAlert">
<center><h5>Please resize your window for a better viewing experience</h5>
<h5>▼</h5>
<button id="button1" onclick="newWindow1()">Click here to open up a window that is more suitable for this website.</button>
<button id="button2" onclick="newWindow2()">Click here to open up a window that is more suitable for this website.</button></center>
</div>
<script>
function newWindow1() {
myWindow = window.open(window.location.href, "", "width=" + (window.screen.height*1.8) + ", height=" + window.screen.height);
close();
}
function newWindow2() {
myWindow = window.open(window.location.href, "", "width=" + window.screen.width + ", height=" + (window.screen.width/1.8));
close();
}
var w = window.innerWidth;
var h = window.innerHeight;
if ((w/h) > 2.73) {
$("#windowSizeAlert").css("display","block");
$("#button1").css("display","block");
}
if ((w/h) < 1.56) {
$("#windowSizeAlert").css("display","block");
$("#button2").css("display","block");
}
$(window).on('resize', function(){
var w = window.innerWidth;
var h = window.innerHeight;
if ((w/h) > 2.73) {
$("#windowSizeAlert").css("display","block");
$("#button1").css("display","block");
$("#button2").css("display","none");
}
if ((w/h) < 1.56) {
$("#windowSizeAlert").css("display","block");
$("#button2").css("display","block");
$("#button1").css("display","none");
}
if ((w/h) >1.56 && (w/h)<2.73) {
$("#windowSizeAlert").css("display","none");
$("#button1").css("display","none");
$("#button2").css("display","none");
}
});
</script>
<div id="header">
<a href="index.html"><div id="headerCompanyLogo">
<img id="logoRed" src="Images/logoRed.png">
<img id="logoWhite" src="Images/logoWhite.png">
</div></a>
<div id="headerCompanyName">
<span>C</span>
<span>C</span>
<span>C</span>
<span>D</span>
<span>A</span>
</div>
<a href="index.html"><div id="headerHome">Home</div></a>
<div id="headerEducationdropdown">
<a href="education.html"><div id="headerEducation">Education</div></a>
<div id="headerEducationContent">
<div><a href="educationSymphony.html">Symphony Orchestra</a></div>
<div><a href="educationPiano.html">Piano & Teaching</a></div>
<div><a href="educationChoir.html">CICF & Choir</a></div>
<div><a href="educationArts.html">Dance, Art & Drama</a></div>
</div>
</div>
<div id="headerEventsdropdown">
<a href="events.html"><div id="headerEvents">Events</div></a>
<div id="headerEventsContent">
<div><a href="events2020.html">2020 Events</a></div>
<div><a href="pastevents.html">Past Events</a></div>
</div>
</div>
<div id="headerAboutdropdown">
<a href="about.html"><div id="headerAbout">About</div></a>
<div id="headerAboutContent">
<div><a href="about.html#whatWeDo1">What We Do</a></div>
<div><a href="about.html#history1">History</a></div>
<div><a href="about.html#board1">Board & Staff</a></div>
<div><a href="about.html#reviews1">Reviews</a></div>
</div>
</div>
<script>
$("#sidebarcontainer").css("height",document.height);
$("#headerEventsdropdown").mouseenter(function(){
$("#headerEventsContent").show(200);
})
$("#headerEventsdropdown").mouseleave(function(){
$("#headerEventsContent").hide(200);
})
$("#headerAboutdropdown").mouseenter(function(){
$("#headerAboutContent").show(200);
})
$("#headerAboutdropdown").mouseleave(function(){
$("#headerAboutContent").hide(200);
})
$("#headerEducationdropdown").mouseenter(function(){
$("#headerEducationContent").show(200);
})
$("#headerEducationdropdown").mouseleave(function(){
$("#headerEducationContent").hide(200);
})
</script>
<a href="contact.html"><div id="headerContactUs">Contact Us</div></a>
</div>
<div id="events2020Intro">
<img src="Images/myDreamYellowButterflies.jpg">
<center><div id="events2020IntroEvents">2020 Events</div>
<div id="intro">
<h4 id="events2020IntroClickhere">click here to continue</h4>
<h4 id="events2020IntroButton">▽</h4></center>
</div>
<script>
$(document).ready(function(){
setTimeout(function() {
$("#events2020IntroEvents").animate({
opacity: "1"
});
}, 400);
setTimeout(function() {
$("#events2020IntroClickhere, #events2020IntroButton").animate({
opacity: "1"
});
}, 800);
});
$("#events2020IntroButton").click(function(){
var windowHeight = $(window).height();
$("#photoContainer").css('display','block');
$("#desc2").css('display','block');
$("#newYearsConcertDescription").css('display','block');
$("#calendardiv").css('display','block');
$("#pasteventsBtn").css('display','block');
$("#footer").css('display','block');
$([document.documentElement, document.body]).animate({
scrollTop: ($("#photoContainer").offset().top - windowHeight*0.2)
}, 2000);
});
</script>
</div>
<center><div id="photoContainer">
<h5 id="photoContainerText">2020 Chinese New Year Concert</h5>
<img id="photo1" src="Images/newYearsConcertSeveralMusiciansGroup.jpg">
<img id="photo2" src="Images/newYears2020ConductorLinDaYe.jpg">
<img id="photo3" src="Images/newYears2020ErhuGaoShaoQing.jpg">
<img id="photo4" src="Images/newYears2020PianistZhangHaoChen.jpg">
<img id="photo5" src="Images/newYears2020PipaMiaoXiaoZhen.jpg">
<img id="photo6" src="Images/newYearsConcertEnding.jpg">
<img id="photo7" src="Images/newYearsConcertViolinists.jpg">
<img id="photo8" src="Images/maleMusicianSuona.jpg">
<img id="photo9" src="Images/newYearsConcertCellists.jpg">
<script>
$("#photo1").mouseenter(function(){
$("#photoContainerText").html("Musicians at the 2020 Chinese New Year Concert");
});
$("#photoContainer").mouseleave(function(){
$("#photoContainerText").html("2020 Chinese New Year Concert");
});
$("#photo2").mouseenter(function(){
$("#photoContainerText").html("Conductor Lin Da Ye");
});
$("#photo3").mouseenter(function(){
$("#photoContainerText").html("Erhu Soloist Gao Shao Qing");
});
$("#photo4").mouseenter(function(){
$("#photoContainerText").html("Pianist Zhang Hao Chen");
});
$("#photo5").mouseenter(function(){
$("#photoContainerText").html("Pipa Soloist Miao Xiao Zhen");
});
$("#photo6").mouseenter(function(){
$("#photoContainerText").html("2020 Chinese New Year Concert Ending");
});
$("#photo7").mouseenter(function(){
$("#photoContainerText").html("Violinists at the 2020 Chinese New Year Concert");
});
$("#photo8").mouseenter(function(){
$("#photoContainerText").html("Suona Soloist");
});
$("#photo9").mouseenter(function(){
$("#photoContainerText").html("Cellists at the 2020 Chinese New Year Concert");
});
</script>
</div></center>
<div id="newYearsConcertDescription">
<h3>2020 Chinese New Year Concert</h3>
<p>The 2020 Chinese New Year Concert is an unforgettable celebration and a unique experience of Chinese music and western classic music for music lovers of all ages. The concert on January 19, 2020 is led by Chief Conductor Lin Daye and features the youngest Gold Medal Winner of the Van Cliburn International Piano Competition, Chinese pianist Zhang Haochen, with one of the finest national symphony orchestra –The Shenzhen Symphony Orchestra (SSO).
<br><br>
The Concert is designed to enrich the cultural exchange between East and West and to bring China's best musicians on to the Canadian stages. Audiences can immerse themselves in new soundscapes and broaden their musical horizons with an incomparable taste of music.
</p>
<div class="slideshowContainer">
<div class="slides fade">
<img src="Images/newYearsConcert2020Conductor.jpg">
</div>
<div class="slides fade">
<img src="Images/musiciansNewYearsConcert2020.jpg">
</div>
<div class="slides fade">
<img src="Images/newYearsConcertAudience.jpg">
</div>
<div class="slides fade">
<img src="Images/newYearsConcertGuestsGroupPhoto.jpg">
</div>
<a class="left" onclick="slidesIncrease(-1)">❮</a>
<a class="right" onclick="slidesIncrease(1)">❯</a>
</div>
<br>
<script>
var slideNum = 1;
slideRn(slideNum);
function slidesIncrease(n) {
slideRn(slideNum += n);
}
function slideRn(n) {
var i;
var slides = document.getElementsByClassName("slides");
if (n > slides.length) {slideNum = 1}
if (n < 1) {slideNum = slides.length}
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
slides[slideNum-1].style.display = "block";
}
</script>
</div>
<p id="desc2">Distinguished young conductor, Daye Lin was born in 1980 in Shandong Province, China. He has studied conducting under tutelage of Prof. Xu Xin at the Central Conservatory of Music in Beijing, Prof. Zhang Guoyong at the Shanghai Conservatory of Music, at the Hochschule für Musik Hanns Eisler in Berlin under the guidance of Prof. Christian Ehwald and obtained the Konzertexam certificate in Germany. Highlights of 2017/18 season include his appearance at the Filarmonica Artura Toscanini, Nürnberg Symphony Orchestra, Seattle Symphony Orchestra and the Orquesta Filarmónica de la UNAM in Mexico and SZSO Belt & Road middle east Europe concert tour. In 2019, once again invited by the Emilia Romagna Festival, Donizetti Festival and the state of Erlangen, Nuremburg to conduct SZSO at the Ljubljana Festival, Donizetti Festival, Festival delle Nazioni, Kammerphilharmonie dacapo München among others.
<br><br>
Since his gold medal win at the Thirteenth Van Cliburn International Piano Competition in 2009, the pianist Haochen Zhang has captivated audiences in the United States, Europe, and Asia with a unique combination of deep musical sensitivity, fearless imagination, and spectacular virtuosity. In 2017, Haochen received the prestigious Avery Fisher Career Grant, which recognizes talented musicians with the potential for a major career in music. Haochen is a graduate of the Curtis Institute of Music in Philadelphia where he studied under Gary Graffman. He has also been studying periodically with Andreas Haefliger in Vienna. He was previously trained at the Shanghai Conservatory of Music and the Shenzhen Arts School, where he was admitted in 2001 at the age of 11 to study with Professor Dan Zhaoyi.
<br><br>
Other distinguished musicians include George Gao (erhu musician), Zhang Qiang (pipa), Zhang Qianyuan (suona).</p>
<div id="calendardiv">
<h5>Events Calendar</h5>
<iframe id="eventsCalendar" src="https://calendar.google.com/calendar/embed?height=600&wkst=1&bgcolor=%23ffd500&ctz=America%2FToronto&src=cXM1a3RhbzlwYXVqYjBmamxkbDdtYnRwZjBAZ3JvdXAuY2FsZW5kYXIuZ29vZ2xlLmNvbQ&src=ZW4uY2FuYWRpYW4jaG9saWRheUBncm91cC52LmNhbGVuZGFyLmdvb2dsZS5jb20&color=%23E4C441&color=%230B8043&showTitle=1&showDate=1&showPrint=0&showTabs=1&showCalendars=1&hl=en_GB&title=CCCDA%20Events" bgcolor=%23ccccff& style="border-width:0" width="800" height="600" frameborder="0" scrolling="no"></iframe>
</div>
<center><a id="pasteventsBtn" href="pastevents.html">View Past Events</a></center>
<div id="footer">
<hr>
<div id="footerLogoDiv">
<a href="index.html">
<img src="Images/CCCDAlogo.png">
</a>
<div id="mc_embed_signup">
<form action="https://ocdsb.us2.list-manage.com/subscribe/post?u=3c41640258b3b732f1452a14e&id=53252c0114" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<div id="mc_embed_signup_scroll">
<label for="mce-EMAIL">Subscribe</label>
<input type="email" value="" name="EMAIL" class="email" id="mce-EMAIL" placeholder="email address" required>
<input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button"></div>
<div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text" name="b_3c41640258b3b732f1452a14e_53252c0114" tabindex="-1" value=""></div>
</form>
</div>
</div>
<!--<p>Culture in Art.</p>-->
<div id="footer2">
<div class="footerDiv">
<h3>Explore</h3>
<p><a href="index.html">Home</a></p> •
<p><a href="events.html">Events</a></p> •
<p><a href="education.html">Education</a></p> •
<p><a href="about.html">About</a></p> •
<p><a href="contact.html">Contact Us</a></p>
</div>
<div class="footerDiv">
<h3>Follow</h3>
<p><a href="https://twitter.com/cccda_ca?lang=en">Twitter</a></p> •
<p><a href="https://www.facebook.com/Canada-China-Cultural-Development-Association-364911953578051/about/">Facebook</a></p> •
<p><a href="https://www.youtube.com/channel/UCcUF1BexqaJodTvNv5hy8BQ/featured">YouTube</a></p> •
<p><a href="https://ca.linkedin.com/in/rudy-gao-75435455?trk=public_profile_browsemap_profile-result-card_result-card_full-click">LinkedIn</a></p>
</div>
</div>
<div onclick="backToTop()" id="backToTopButton">
<img id="backToTopOutline" src="Images/backToTopOutline.png">
<img id="backToTopFill" src="Images/backToTopFill.png">
</div>
<script>
function backToTop() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
</script>
</div>
</body>
</html>