当前位置:首页 > 技术文章 > 正文内容

May Day Holiday Celebrations Across Hunan

zonemu2个月前 (08-18)技术文章23

On April 28, the Hunan Provincial Department of Culture and Tourism announced a list of major cultural tourism activities for the upcoming May Day holiday from May 1 to 5. Let's take a look at these events.

Duration: 10:30, 11:30, 14:00, and 15:00 from May 1 to 5Venue: Changsha MuseumActivity: Stage play "Seeking Changsha," highlighting the bronze culture of the Shang and Zhou dynasties, the Chu culture of Hunan, the Changsha Kingdom in the Han Dynasty, and the Changsha Kiln in the Tang Dynasty.

The stage play "Seeking Changsha." (Photo/Guo Liliang, Hunan Daily)

Time: on the evenings of May 2 and May 3Venue: Liuyang Sky Theater, ChangshaActivities: large-scale immersive fireworks shows

Time: 8:00 PM from May 1 to May 4Venue: Tongxi Lake in the Dawangshan Tourist Resor, ChangshaActivity: The 2025 Changsha Dawangshan Starlight Fireworks Season

Photo/Voice of Hunan

Duration: 9:00-20:00 from May 1 to 5Venue: Tongguan Kiln Ancient Town China-chic Paradise, ChangshaActivities: the sixth China-chic Fireworks Festival, including a drone light show; a wooden-bench dragon dance; a dazzling display of molten iron fireworks; a parade in traditional Chinese costume; and, a myth-themed bazaar.

Duration: May 1 – 3Venue: Liling City, ZhuzhouActivities: the third Liling Fried Rice Noodle Festival, including a gourmet fair, free tasting of fried rice noodles, and free entrance to all tourist sites across the city.

The first fireworks show of the Hunan (Liling) Fireworks and Firecrackers Industry Expo. (File photo/Huang Yongqiang)

Duration: May 1 – June 2Venue: Dongzhou Isle Scenic Area, HengyangActivities: a youth street art festival, including immersive adventure challenges, a joyful parade, and Super Wings meet & greet.

Duration: April 30 – May 1Venue: Suining County, ShaoyangActivities: the 2025 Suining Miao Siyueba Girls' Festival, including a running race, a cultural tourism promotion conference, a lecture on ethnicity, folk performances, a rural food festival, and a themed evening gala.

The Siyueba Girls' Festival. (File photo/Teng Zhizhong and Huang Kailong)

Duration: May Day holidayVenue: Taohuayuan Scenic Area, ChangdeActivities: a lawn music festival, intangible cultural heritage performances, a parade in traditional Chinese costume, free entry upon reciting the story of the Peach Blossom Spring, a parent-kid adventure season, and a China-chic cultural art festival.

Duration: May Day holidayVenue: Qianzhou Ancient Town, XiangxiActivities: intangible cultural heritage performances, a lantern festival, a traditional clothing fashion show, a mystery adventure experience, and an intangible cultural heritage fair.

The night view of Qianzhou Ancient Town. (Photo/Guo Liliang, Hunan Daily)

Duration: May Day holidayVenue: Laosicheng Tusi Camp Tourist Resort, XiangxiActivities: a float parade, a robot dog interactive zone, and a lawn music festival.This article is from the Hunan Provincial Government www.enghunan.gov.cn.Translator: Xiao JuanChinese sources: hunantoday; Voice of Hunan

相关文章

财务主管花了一周时间自制费用报销管理系统,是我见过最好用的

公司的费用报销又多又乱,一不小心就出错!头疼,财务主管花了一周时间自制费用报销管理台账,分类统计,重复报销还能自动提醒,真的少了很多麻烦!费用报销是财务日常工作必会面对的,各种票据太多太乱,搞的很烦,...

基于Docker构建安装Git/GitLab,以及制作springboot工程镜像

今天给大家分享的是《领先的开源自动化服务器Jenkins的应用实战》之基于Docker安装构建Git/GitLab版本控制与代码云存储的场所;使用Git管理项目,springboot工程制作镜像知识体...

我常在使用的几个 VIM 插件(我常在使用的几个 vim 插件)

今天给你分享几个我觉得还不错的 VIM 插件,也许能给你带来一点「惊喜感」。vim主题插件 你完全可以让你的编辑器按照你喜欢的样子呈现,在 vimcolors 这个网站中,汇集了很多的主题,你可以进去...

web前端是什么,在哪些地方有应用,html和html5区别都在这里了

web前端是什么,在哪些地方有应用简介web前端开发技术什么是html、html5什么是css、css3什么是js,javascriptweb前端的应用大家好,我是ots_luo,很多小伙伴不知道we...

在html5页面中如何使用vue3(html页面引入vue组件)

今天是2021.7.14,是个好日子.好久没发布文章了.今天发布下如何在在html页面中使用vue3.义县游学电子科技一直以技术文章为主.以下是h5的页面源码:<html><scri...

数组、去重、排序、合并、过滤、删除

ES6数字去重 Array.from(new Set([1,2,3,3,4,4])) //[1,2,3,4] [...new Set([1,2,3,3,4,4])] //[1,2,3,4]2...