CD1 80716 Beautiful Wedding - Prelude 美麗的婚禮 - 給婚禮用的古典前奏曲
CD2 80717 Beautiful Wedding - Ceremony 美麗的婚禮 - 給婚禮儀式的古典音樂
CD3 80718 Beautiful Wedding - Dinner 美麗的婚禮 - 給婚禮晚宴的古典音樂
CD4 83687 Beautiful Wedding: Jazz For The Wedding Dinner 美麗的婚禮 - 給婚禮晚宴的爵士音樂
CD: 1
1 Delibes: Flower Duet from Lakme 4:40
2 Satie: Gymnopedie No. 3 3:21
3 Debussy: Clair de lune 5:31
4 Vaughan Williams: Fantasia on Greensleeves 4:33
5 Handel: Concerto Grosso Op. 6, No. 2: I. Andante larghetto 3:44
6 Handel: Water Music-Suite in F major: Air 2:29
7 Respighi: Ancient Airs and Dances, Suite No. 3: I. Anon.: Italiana 3:14
8 Marcello: Adagio from Concerto for Oboe and Strings 3:48
9 Mozart: Andante from Piano Concerto No.21 6:47
10 Mozart: Eine kleine Nachtmusik, K.525: II. Romance: Andante 5:44
11 J. Strauss, Jr.: Hochzeits-Praludium (Wedding Prelude), Op. 469 3:40
12 Vivaldi: The Four Seasons, Winter: II. Largo I 2:09
13 Handel: Largo from Xerxes 3:37
14 Pezel: Sarabande 2:08
15 Bach: Suite No. 3 in D major: Air 4:42
16 Pachelbel: Canon 6:13
CD: 2
1 Handel: Entrance of the Queen of Sheba 3:18
2 Clarke: Trumpet Voluntary 2:56
3 Charpentier: Te Deum 2:32
4 Purcell: Trumpet Tune in D Major 2:52
5 Campra: Rigaudon 2:54
6 Bach: Sheep May Safely 5:21
7 Bach: Jesu, Joy of Man''s Desiring 3:17
8 Bach: Sinfonia, from Cantata No. 29 ('We Thank Thee, Lord'), BWV 29 3:50
9 Schubert: Ave Maria Michael 4:08
10 The Four Seasons, Violin Concerto in F Major, RV 293 'Autumn': III. Allegro 3:23
11 Mendelssohn: Overture & Incidental Music to A Midsummer Night''s Dream: Wedding March 4:36
12 Handel: Music for The Royal Fireworks: La Rejouissance 2:03
13 Joy (excerpt - based on Beethoven''s Ode to Joy) 3:05
14 Bach: Brandenburg Concerto No. 5 in D major, BWV 1050: I. Allegro (excerpt) 2:48
descSectionTop) {
desc_sections.find("ul").css({"top": 0});
if (currentScrollPos > prevScrollPos && product_window.scrollTop() > descSectionTop + headerHeight) {
desc_sections
.stop()
.addClass("desc_sections_hold")
.css({"min-height": descSectionHeight})
.find("ul")
.css({"top": 0});
} else if (prevScrollPos > currentScrollPos) {
desc_sections
.stop()
.addClass("desc_sections_hold")
.css({"min-height": descSectionHeight})
.find("ul")
.css({"top": headerHeight});
} else {
prevScrollPos = 0;
} prevScrollPos = currentScrollPos;
if ($(window).width() < 768) {
$("body").css("padding-bottom", "68px");
}
} else {
prevScrollPos = 0;
desc_sections.stop().removeClass("desc_sections_hold")
if ($(window).width() < 768) {
$("body").css("padding-bottom", "68px");
}
}
// 點選產品說明滑動
$(".desc_sections a.scroll").bind("click", function(event) {
var targetScrollTop = parseInt($($(this).attr("href")).offset().top - descSectionHeight + 1);
if (targetScrollTop > window.scrollY + 1) {
$("html, body").stop().animate({
scrollTop: targetScrollTop
}, 300);
} else {
$("html, body").stop().animate({
scrollTop: targetScrollTop - headerHeight
}, 300);
}
});
// 顯示當前產品說明
if (currentScrollPos > prevScrollInformationPos) {
$.each(desc_section_list, function(index, desc_section) {
var desc_sectionTop = $(desc_section).offset().top - descSectionHeight - 1
var desc_sectionHeight = $(desc_section).height()
var current_desc_section = $("a.scroll[href$='" + $(desc_section).attr("id") + "']");
if (product_window.scrollTop() > desc_sectionTop || index === 0) {
current_desc_section
.stop()
.addClass('active')
.parent()
.siblings()
.find("a")
.removeClass('active');
} else {
current_desc_section.removeClass('active');
} prevScrollInformationPos = currentScrollPos;
});
} else {
$.each(desc_section_list, function(index, desc_section) {
var desc_sectionTop = $(desc_section).offset().top - descSectionHeight - 1
var desc_sectionHeight = $(desc_section).height()
var current_desc_section = $("a.scroll[href$='" + $(desc_section).attr("id") + "']");
if (product_window.scrollTop() + headerHeight > desc_sectionTop) {
current_desc_section
.stop()
.addClass('active')
.parent()
.siblings()
.find("a")
.removeClass('active');
} else {
current_desc_section.removeClass('active');
}
});
prevScrollInformationPos = currentScrollPos;
}
});
})