Skip to content

Commit 9eb2001

Browse files
committed
update info
1 parent cf0d5a3 commit 9eb2001

File tree

2 files changed

+21
-6
lines changed

2 files changed

+21
-6
lines changed

assets/js/i18n.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313

1414
// 首页 Hero
1515
'hero.title': 'OpenMOSS 团队',
16-
'hero.p1': 'OpenMOSS 团队隶属于上海创智学院,并与复旦大学及模思智能保持紧密合作。在邱锡鹏教授的带领下,团队围绕大语言模型开展前沿研究,重点推进模型架构、评测方法与应用场景等方向,致力于打造开放、协作且具有实际影响力的人工智能创新成果。',
17-
'hero.p2': '团队成员在人工智能领域具有坚实积累,培养的毕业生任职或深造于 MIT、UC Berkeley、CMU、FDU、SJTU 等世界顶尖高校,或加入 ByteDance、Alibaba、Tencent、AWS、Google、Microsoft、Optiver 等领先企业,或投身创新创业,形成了充满活力的学术与创新生态。',
16+
'hero.p1': 'OpenMOSS 团队由上海创智学院与复旦大学自然语言处理实验室、模思智能联合共建,探索以"产学研深度融合"为核心的创新发展模式。团队围绕大语言模型与智能体开展前沿研究,重点布局模型架构、评测体系与应用场景等方向,致力于打造开放协作、面向现实需求、具有持续影响力的AI创新成果。',
17+
'hero.p2': '团队在人工智能领域长期积累深厚,培养的学生先后赴 MIT、Harvard University、UW、UC Berkeley、CMU等世界顶尖高校深造,或加入SII、FDU、SJTU等高校任职,或加入 ByteDance、Alibaba、Tencent、AWS、Google、Microsoft、Optiver 等企业任职,亦有成员投身创新创业,累计孵化公司总估值已超过 50 亿元,形成了兼具学术活力与产业动能的创新生态。',
1818
'hero.btn.highlights': '最新亮点',
1919
'hero.btn.join': '加入我们',
2020

@@ -159,8 +159,8 @@
159159

160160
// Hero
161161
'hero.title': 'OpenMOSS Team',
162-
'hero.p1': 'OpenMOSS Team is a research group under the Shanghai Innovation Institution (SII), working in close collaboration with Fudan University and MOSI Intelligence. Led by Prof. Xipeng Qiu, the team conducts cutting-edge research on large language models (LLMs), advancing the frontiers of model architecture, evaluation, and application with a strong commitment to open, collaborative, and impactful AI innovation.',
163-
'hero.p2': 'Our team members have solid expertise in artificial intelligence. Our graduates work or pursue further studies at world-class universities such as MIT, UC Berkeley, CMU, FDU, and SJTU, join leading companies like ByteDance, Alibaba, Tencent, AWS, Google, Microsoft, and Optiver, or engage in innovation and entrepreneurship, forming a vibrant academic and innovation ecosystem.',
162+
'hero.p1': 'OpenMOSS Team is jointly established by Shanghai Innovation Institution (SII), Fudan University NLP Lab, and MOSI Intelligence, exploring an innovative development model centered on deep integration of industry, academia, and research. The team conducts cutting-edge research on large language models and AI agents, focusing on model architecture, evaluation systems, and application scenarios, committed to creating open, collaborative, and impactful AI innovations that address real-world needs.',
163+
'hero.p2': 'The team has accumulated extensive expertise in artificial intelligence. Our students have pursued advanced studies at world-renowned institutions such as MIT, Harvard University, UW, UC Berkeley, and CMU, joined universities including SII, FDU, and SJTU as faculty members, or work at leading companies like ByteDance, Alibaba, Tencent, AWS, Google, Microsoft, and Optiver. Some members have also embarked on entrepreneurial ventures, with incubated companies reaching a cumulative valuation of over 5 billion RMB, forming an innovative ecosystem that combines academic vitality with industrial momentum.',
164164
'hero.btn.highlights': 'Highlights',
165165
'hero.btn.join': 'Join Us',
166166

assets/js/spa.js

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,21 @@
179179
}
180180
}, 50);
181181
}
182+
183+
// 处理研究方向页面的滚动到最新亮点
184+
if (route === 'research' && params.scroll === 'highlights') {
185+
setTimeout(() => {
186+
const target = document.getElementById('research-highlights');
187+
if (target) {
188+
const offset = 100; // 导航栏高度 + 额外间距
189+
const bodyRect = document.body.getBoundingClientRect().top;
190+
const elementRect = target.getBoundingClientRect().top;
191+
const elementPosition = elementRect - bodyRect;
192+
const offsetPosition = elementPosition - offset;
193+
window.scrollTo({ top: offsetPosition, behavior: 'smooth' });
194+
}
195+
}, 50);
196+
}
182197
}
183198

184199
// 滚动到指定区域的函数(用于按钮点击)
@@ -228,7 +243,7 @@
228243
<h1>${t('hero.title')}</h1>
229244
${paragraphs.map(p => `<p class="lead">${p}</p>`).join('')}
230245
<div class="page-hero-actions">
231-
<a class="btn btn-primary" href="https://openmoss.sii.edu.cn/en/" target="_blank" rel="noopener">${t('hero.btn.highlights')}</a>
246+
<a class="btn btn-primary" href="#research?scroll=highlights">${t('hero.btn.highlights')}</a>
232247
<a class="btn btn-outline" href="#positions">${t('hero.btn.join')}</a>
233248
</div>
234249
</div>
@@ -470,7 +485,7 @@
470485
</div>
471486
</section>
472487
473-
<section class="container sec">
488+
<section class="container sec" id="research-highlights">
474489
<h2>${t('research.highlights.title')}</h2>
475490
<div class="highlights-list">
476491
${highlights.map(h => `

0 commit comments

Comments
 (0)