Blogger Information
Blog 12
fans 0
comment 0
visits 7745
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
仿腾讯浏览器主页设计
屈世明
Original
570 people have browsed it

手机访问原图
原图
自己设计出来的
自己设计出来的

美工字体效果差距太大,只是简单看看结构吧.

整体页面结构说明


分别引入iconfont,reset,和分结构的CSS.body分为三部分独立完成

其中注意在reset设置好随手机端变化的自适应rem并通过媒体查询确保rem不至于太小或太大,代码如下:

  1. html {
  2. font-size: calc(100vw / 3.75);
  3. }
  4. body {
  5. font-size: 0.16rem;
  6. }
  7. @media (max-width: 320px) {
  8. html {
  9. font-size: 85px;
  10. }
  11. }
  12. @media (min-width: 640px) {
  13. html {
  14. font-size: 170px;
  15. }
  16. }

过程细节说明

  1. html来分层一层一层来推进,写了大结构后,完成一层细节后再进入下一层,如header内容

2.css代码是关键,一是注意样式属性的逐层选择,也就是子层样式写的时候把父层的选择器直接复制过来,再加子层项

3.活用flex和grid布局,比如

  1. .两元素同组上下两行居中对齐 {
  2. display: grid;
  3. place-items: center;
  4. }
  5. .两元素同组同行左右两端对齐 {
  6. display: grid;
  7. grid-template-columns: 1fr 0.6rem;
  8. place-content: space-between;
  9. }
  10. .几元素分散导航{
  11. display: flex;
  12. place-content: space-around;
  13. }
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post