From e15d9a881c2c6db292400f73444fb0d7cfb9c8ed Mon Sep 17 00:00:00 2001 From: xiaomai Date: Sat, 1 Nov 2025 21:16:30 +0800 Subject: [PATCH] feat(ui): add founders list scrolling banner This commit introduces a 'breaking news' style scrolling banner at the bottom of the page. The banner displays the list of the first founders from 2005. It includes the necessary HTML structure and CSS for styling, animation, and responsiveness. --- 20251116/photowall/index.html | 98 +++++++++++++++++++++++++++++++++++ 1 file changed, 98 insertions(+) diff --git a/20251116/photowall/index.html b/20251116/photowall/index.html index c7dfa13..5d338f5 100644 --- a/20251116/photowall/index.html +++ b/20251116/photowall/index.html @@ -25,6 +25,49 @@ height: auto !important; } } + + /* Breaking News 样式 */ + .breaking-news-container { + box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3); + } + + .breaking-news-label { + box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2); + } + + .breaking-news-content { + display: inline-block; + white-space: nowrap; + /* padding-left: 120px; 为标签留出空间 */ + animation: scrollText 120s linear infinite; + } + + .breaking-news-content span { + margin: 0 15px; + font-weight: bold; + } + + @keyframes scrollText { + 0% { + transform: translateX(100%); + } + 100% { + transform: translateX(-100%); + } + } + + /* 响应式调整 */ + @media (max-width: 768px) { + .breaking-news-content { + font-size: 14px; + padding-left: 100px; + } + + .breaking-news-label { + padding: 10px 15px; + font-size: 14px; + } + } @@ -145,6 +188,61 @@ --> + + +
+
+ 2005年第一届创办人名表: +
+
+ 楊吉陽(已故) + 唐華(已故) + 許仁菘(已故) + 許汶信(已故) + 劉炎松(已故) + 楊淑清(已故) + 黃芝芳(已故) + | + 劉吉棟 + 許任隆 + 楊順發 + 吳祥森 + 林庭芝 + 林炳華 + 林庭珠 + 李玉媚 + 林應財 + 許斯杰 + 許敏捷 + 許智興 + 劉德祥 + 李豫梅 + 黄潮明 + 楊信陞 + 蔡立義 + 林炳龍 + 劉振昌 + 劉迪發 + 楊美雄 + 彭三媚 + 楊光豐 + 楊秀娥 + 莊秀清 + 李玉嬌 + 趙惜嬌 + 陳秀珠 + 張彩雁 + 劉暐康 + 王貴興 + 劉林順 + 劉益華 + 紀有平 +
+