Files
freeCodeCamp/curriculum/challenges/chinese/01-responsive-web-design/responsive-web-design-projects/build-a-tribute-page.chinese.md
ZhichengChen add8af389e fix(i18n): update Chinese translation of responsive web design projects (#37925)
* fix(i18n): update chinese translation of responsive web design projects

* fix(i18n): update review suggestion

* fix(i18n): update review suggestion

* fix(i18n): update review suggestion
2019-12-22 12:24:13 -08:00

57 lines
3.5 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
id: bd7158d8c442eddfaeb5bd18
title: Build a Tribute Page
isRequired: true
challengeType: 3
forumTopicId: 301147
localTitle: 制作一个致敬页
---
## Description
<section id='description'>
<strong>目标:</strong>使用 <a href='https://codepen.io' target='_blank'>CodePen.io</a> 搭建一个与这个功能上相似的 app<a href='https://codepen.io/freeCodeCamp/full/zNqgVx' target='_blank'>https://codepen.io/freeCodeCamp/full/zNqgVx</a>
在满足以下<a href='https://en.wikipedia.org/wiki/User_story' target='_blank'>需求</a>并能通过所有测试的前提下,你可以根据自己的喜好来美化你的 app。
你可以使用 HTML、JavaScript 以及 CSS 来完成项目。由于目前你只学到了 CSS 课程,所以我们建议你只使用 CSS 来完成这个项目,同时巩固一下你之前所学的内容。你也可以使用 Bootstrap 或者 SASS。我们不推荐你在这个项目中使用其他技术比如 jQurey、React、Angular 或 Vue否则如果在编码中出现问题你需要自行解决。在后续的其他项目中你将有机会使用各种技术栈比如 React。如果你在使用上述推荐的技术栈编码的过程中发现问题请提交给我们来处理。祝你编码愉快
<strong>需求 1</strong>我的致敬页应有对应<code>id="main"</code>的元素,其中包含其他的所有元素。
<strong>需求 2</strong>我应该看到一个具有相应<code>id="title"</code>的元素,其中包含描述致敬页主题的字符串(即文本),如 "Dr. Norman Borlaug"。
<strong>需求 3</strong>我应该看到一个带有对应<code>id="img-div"</code><code>div</code>元素。
<strong>需求 4</strong><code>img-div</code>元素内,我应该看见有对应<code>id="image"</code><code>img</code>元素。
<strong>需求 5</strong><code>img-div</code>元素内,我应该看见一个具有相应<code>id="img-caption"</code>的元素,其中包含对<code>img-div</code>中图像的描述。
<strong>需求 6</strong>我应该看见具有对应<code>id="tribute-info"</code>的元素,其中包含描述致敬页主题的文本内容。
<strong>需求 7</strong>我应该看见具有对应<code>id="tribute-link"</code>的元素,它链接到一个包含有关致敬页主题额外信息的外部网页,提示:你必须为元素提供<code>target</code>属性,并设置其为<code>_blank</code>以便可以在新选项卡中打开链接(例<code>target="_blank"</code>)。
<strong>需求 8</strong><code>img</code>元素应相对于其父元素的宽度响应地调整大小,但不超过其原始大小。
<strong>需求 9</strong><code>img</code>在其父元素内居中。
你可以通过 fork 这个项目 <a href='http://codepen.io/freeCodeCamp/pen/MJjpwO' target='_blank'>CodePen</a> 来构建你的项目,也可以使用此 CDN 链接在任何你喜欢的环境中运行测试:<code>https://gitcdn.link/repo/freeCodeCamp/testable-projects-fcc/master/build/bundle.js</code>
完成项目并通过所有测试后,输入你的项目在 CodePen 上的链接。
当你遇到问题的时候,记得使用 <a href='https://forum.freecodecamp.one/t/topic/157' target='_blank'>Read-Search-Ask</a> 方法。
</section>
## Instructions
<section id='instructions'>
</section>
## Tests
<section id='tests'>
```yml
tests: []
```
</section>
## Challenge Seed
<section id='challengeSeed'>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>