Merge pull request #81 from antvis/fix_site

首页图片,文字大小写
This commit is contained in:
@thinkinggis 2019-11-24 18:24:51 +08:00 committed by GitHub
commit 992604add1
8 changed files with 17 additions and 34 deletions

2
.gitignore vendored
View File

@ -38,6 +38,7 @@ build/Release
# Dependency directories # Dependency directories
node_modules/ node_modules/
jspm_packages/ jspm_packages/
# Typescript v1 declaration files # Typescript v1 declaration files
@ -75,3 +76,4 @@ public
yarn.lock yarn.lock
package-lock.json package-lock.json
git_log.sh git_log.sh
node_modules/

View File

@ -1,5 +1,5 @@
--- ---
title: data title: Data
order: 1 order: 1
--- ---

View File

@ -1,5 +1,5 @@
--- ---
title: data title: Data
order: 1 order: 1
--- ---

View File

@ -25,7 +25,7 @@ module.exports = {
slug: 'docs/tutorial', slug: 'docs/tutorial',
title: { title: {
zh: '教程', zh: '教程',
en: 'tutorial' en: 'Tutorial'
} }
}, },
{ {

3
packages/l7/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
lib
es
dist

View File

@ -4,29 +4,7 @@
.feature-logo { .feature-logo {
height: 100px !important; height: 100px !important;
} }
.cover-image { .teaser {
margin-top: 60px; right: 0% !important;
height: 300px; margin-top: 90px !important;
}
}
@media only screen and (max-height: 599) and (max-width: 800px) {
.cover-image {
margin-top: 40px;
margin-left: 260px;
max-height: 400px;
}
}
@media only screen and (min-height: 599px) and (min-width:800px) {
.cover-image {
margin-top: 40px;
margin-left: 10px;
height: 600px;
}
}
@media only screen and (max-height: 599px) and (min-width:800px) {
.cover-image {
margin-top: 40px;
margin-left: 10px;
height: 600px;
}
}

View File

@ -1,5 +1,5 @@
{ {
"L7 地理空间数据可视分析引擎": "L7 Geospatial Visualization Analysis", "L7 空间数据可视分析": "L7 Geospatial Visualization",
"地理空间数据可视化": "Geospatial Data Visualization Analysis Framework", "地理空间数据可视化": "Geospatial Data Visualization Analysis Framework",
"L7 是由蚂蚁金服 AntV 数据可视化团队推出的基于WebGL的开源大规模地理空间数据可视分析开发框架。": "Large-scale WebGL-powered Geospatial data visualization analysis framework", "L7 是由蚂蚁金服 AntV 数据可视化团队推出的基于WebGL的开源大规模地理空间数据可视分析开发框架。": "Large-scale WebGL-powered Geospatial data visualization analysis framework",
"架构灵活且自由":"Flexible and Scalable", "架构灵活且自由":"Flexible and Scalable",
@ -11,7 +11,7 @@
"蚂蚁数据可视化": "AntV", "蚂蚁数据可视化": "AntV",
"继续了解": "More", "继续了解": "More",
"更新": "Update", "更新": "Update",
"下载使用":"Download", "开始使用":"Getting Started",
"浅版精彩案例": "Light Theme", "浅版精彩案例": "Light Theme",
"深版精彩案例": "Dark Theme", "深版精彩案例": "Dark Theme",
"感谢信赖":"WE ARE TRUSTED BY", "感谢信赖":"WE ARE TRUSTED BY",

View File

@ -82,7 +82,7 @@ const IndexPage = () => {
type: 'primary', type: 'primary',
}, },
{ {
text: t('下载使用'), text: t('开始使用'),
link: `/${i18n.language}/docs/api/l7`, link: `/${i18n.language}/docs/api/l7`,
}, },
]; ];
@ -129,10 +129,10 @@ const IndexPage = () => {
<img <img
width="100%" width="100%"
className="Notification-module--number--31-3Z" className="Notification-module--number--31-3Z"
src="https://gw.alipayobjects.com/mdn/antv_site/afts/img/A*o40BRo-ANLoAAAAAAAAAAABkARQnAQ" src="https://gw.alipayobjects.com/mdn/antv_site/afts/img/A*cCI7RaJs46AAAAAAAAAAAABkARQnAQ"
/> />
} }
title={t('L7 地理空间数据可视分析引擎')} title={t('L7 空间数据可视分析')}
description={t( description={t(
'L7 是由蚂蚁金服 AntV 数据可视化团队推出的基于WebGL的开源大规模地理空间数据可视分析开发框架。', 'L7 是由蚂蚁金服 AntV 数据可视化团队推出的基于WebGL的开源大规模地理空间数据可视分析开发框架。',
)} )}