美文网首页
Splash Page-界面布局实践

Splash Page-界面布局实践

作者: TROPICALlll | 来源:发表于2018-07-10 12:11 被阅读0次

如何为自己的网站添加飞溅页面?我是这么做的。

  1. 首先到_data中的navigation.yml里为Splash Page新增一个分栏

    splash page.png
  2. _pages中新建一篇文章,命名为splash-page.md。接着参考学习一下minimal-mistakes中关于飞溅页面设置的文章 Splash Page Layout

  • splash-page.md中添加与其他md文章一样的开头代码
    文章开头代码.png
  1. 接着就是设置飞溅页面的重头戏!!
  • 横排样式
feature_row:
  - image_path: /assets/images/unsplash-gallery-image-2-th.jpg
    alt: "placeholder image 1"
    title: "Placeholder 1"
    excerpt: "This is some sample content that goes here with **Markdown** formatting."
    url: "#test-link"
    btn_label: "Read More"
    btn_class: "btn--inverse"
  - image_path: /assets/images/unsplash-gallery-image-3-th.jpg
    title: "Placeholder 2"
    excerpt: "This is some sample content that goes here with **Markdown** formatting."

以上代码便是设置网页正文图片的代码。
feature_row意为功能行,是用来排列正文图片和内容链接的一种格式。
image_path图片(在自己仓库中的)完整路径
alt图像的替代文字
title文章标题
excerpt文章的精炼描述
url“read more”按钮的链接网址
btn_label按钮文字标签
btn_class按钮样式

  1. 竖排样式
    以上是横排样式,下面代码可以设置竖排的每篇文章自成一行的样式。
feature_row2:
  - image_path: /assets/images/unsplash-gallery-image-2-th.jpg
    alt: "placeholder image 2"
    title: "Placeholder Image Left Aligned"
    excerpt: 'This is some sample content that goes here with **Markdown** formatting. Left aligned with `type="left"`'
    url: "#test-link"
    btn_label: "Read More"
    btn_class: "btn--primary"
feature_row3:
  - image_path: /assets/images/unsplash-gallery-image-2-th.jpg
    alt: "placeholder image 2"
    title: "Placeholder Image Right Aligned"
    excerpt: 'This is some sample content that goes here with **Markdown** formatting. Right aligned with `type="right"`'
    url: "#test-link"
    btn_label: "Read More"
    btn_class: "btn--primary"

每一个feature_row即是一行。因而假如希望一行有四五六个图片文章的话,那么在同一个feature_row中添加多个图片文章链接即可。

  1. 对齐方式
{% include feature_row id="intro" type="center" %}

{% include feature_row %}

{% include feature_row id="feature_row2" type="left" %}

feature_row id功能行名称
type规定功能行内容快对齐样式,基本的有left centure right三种

到这里我们的飞溅页面就基本搭建完成啦!

相关文章

  • Splash Page-界面布局实践

    如何为自己的网站添加飞溅页面?我是这么做的。 首先到_data中的navigation.yml里为Splash P...

  • NewsApp01

    阅读原文 1. 项目包含技术点 2. 欢迎界面SplashActivity 布局文件activity_splash...

  • Splash界面

    大多数的Splash界面都是会等待一定时间,然后切换到下一个界面;其实,在这段时间里,可以对系统状况进行检测,比如...

  • Splash启动界面秒开的正确打开模式

    谷歌建议 谷歌在material design中提倡使用Splash启动界面。那Splash启动界面如何呈现秒开的...

  • 手机卫士之Splash界面

    手机卫士之Splash界面 splash: 溅,洒定义一个SplashActivity作为一款软件的打开界面,它承...

  • Android开发遇到的问题

    1.splash(欢迎页) 里边做的事 2.布局优化技巧布局优化技巧

  • 手机卫士涉及的知识点总结

    手机卫士涉及的知识点总结 Splash界面 splash: 溅,洒 展现产品的logo提升产品的知名度初始化操作(...

  • Android APP在后台被杀问题修复

    目前项目采用单 Activity 模式,页面采用 Jetpack Navigation 导航布局如下:Splash...

  • 手机影音01

    阅读原文 01-splash页面 02-MainActivity主页面布局 2.1activity_main.xm...

  • Splash界面的Rx实现

    换了家公司上班,忙着公司的项目,好一段时间没写博客了,今天就来分享Android中Splash界面Rx的一种实现方...

网友评论

      本文标题:Splash Page-界面布局实践

      本文链接:https://www.haomeiwen.com/subject/dmhfpftx.html