• ArthurSlog
  • SLog-42
  • Year·1
  • Guangzhou·China
  • Aug 19th 2018

  • GitHub
  • 掘金主页
  • 简书主页
  • segmentfault

从业之路不同 机缘也不同 人生轨迹由机缘组成 想要有什么样的机缘 也就明白了自己要走的路


开发环境MacOS(High Sierra 10.13.5)

需要的信息和信息源:

  • css 元素框的类型
  • HTML Demo: <img>
  • CSS Demo: border
  • CSS Demo: border-radius
  • CSS Demo: padding
  • CSS Demo: margin
  • CSS Demo: width
  • CSS Demo: height
  • CSS Demo: object-fit
  • 样式文件预编译器Sass的安装和使用
  • 样式文件预编译器Sass指导手册
  • HTTP概述
  • HTTP
  • 互联网是如何工作的
  • 万维网是如何工作的
  • 统一资源定位符(URL)
  • 什么是超链接
  • 创建超链接
  • AJAX是异步的JavaScript和XML(Asynchronous JavaScript And XML)
  • XMLHttpRequest
  • Using files from web applications

开始编码

  • 本篇实现 登陆后,显示默认头像
  • 参考HTML Demo: <img>,我们对 html 文件进行更新

client/app.html

<!DOCTYPE html>
<html><head><meta charset="utf-8"><link rel="stylesheet" type="text/css" href="./css/style.css"><!-- 开发环境版本,包含了有帮助的命令行警告 --><script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script><title>signin_ArthurSlog</title>
</head><body><div id="signup-container"><template class="container" v-if="pagestate === '0'"><div>This is index's page by ArthurSlog</div><br><button v-on:click="signin_index">Signin</button><br><button v-on:click="signup_index">Signup</button></template><template id="Signin" v-else-if="pagestate === '1'"><div>This is signin's page by ArthurSlog</div><p>Singin</p><form id="form1" v-on:submit.prevent="signin"><br><div>Account: {{ name_signin }}<br><input type="text" v-model="name_signin" placeholder="username"></div><br><br><div>Password: {{ password_signin }}<br><input type="text" v-model="password_signin" placeholder="password"></div><br><input type="submit" value="登陆"></form><br><button v-on:click="return_index">ReturnIndex</button></template><template id="Signup" v-else-if="pagestate === '2'"><div>This is signup's page by ArthurSlog</div><p>Singup</p><form id="form2" v-on:submit.prevent="addUser"><br><div>Account: {{ name }}<br><input type="text" v-model="name" placeholder="username"></div><br><br><div>Password: {{ password }}<br><input type="text" v-model="password" placeholder="password"></div><br><br><div>Again Password: {{ repassword }}<br><input type="text" v-model="repassword" placeholder="repassword"></div><br><br><div>First Name: {{ firstname }}<br><input type="text" v-model="firstname" placeholder="firstname"></div><br><br><div>Last Name: {{ lastname }}<br><input type="text" v-model="lastname" placeholder="lastname"></div><br><br><div>Birthday: {{ birthday }}<br><input type="text" v-model="birthday" placeholder="2000/08/08"></div><br><br><div><span>Sex: {{ currentSex }}</span><br><input type="radio" id="sex" value="male" v-model="currentSex"><label for="sex">male</label><br><input type="radio" id="sex" value="female" v-model="currentSex"><label for="sex">female</label></div><br><br><div><span>Age: {{ currentAge }}</span><br><select v-model="currentAge" id="age"><option disabled value="">Select</option><option v-for="age in ages">{{ age }}</option></select></div><br><br><div>Wechart: {{ wechart }}<br><input type="text" v-model="wechart" placeholder="wechart's name"></div><br><br><div>QQ: {{ qq }}<br><input type="text" v-model="qq" placeholder="12345678"></div><br><br><div>Email: {{ email }}<br><input type="text" v-model="email" placeholder="12345678@qq.com"></div><br><br><div>Contury: {{ contury }}<br><input type="text" v-model="contury" placeholder="China"></div><br><br><div>Address: {{ address }}<br><input type="text" v-model="address" placeholder="Guangzhou"></div><br><br><div>Phone: {{ phone }}<br><input type="text" v-model="phone" placeholder="138********"></div><br><br><div>Websize: {{ websize }}<br><input type="text" v-model="websize" placeholder="xxx.com"></div><br><br><div>Github: {{ github }}<br><input type="text" v-model="github" placeholder="Github's URl"></div><br><br><div>Bio: {{ bio }}<br><input type="text" v-model="bio" placeholder="This is the world~"></div><br><br><input type="submit" value="完成注册"></form><button v-on:click="addUser">addUser</button><br><button v-on:click="return_index">ReturnIndex</button><br></template><template id="returnResult" v-else-if="pagestate === '3'"><div><img id="ArthurSlog_icon" src="/image/ArthurSlog.png" alt="ArthurSlog_icon" /></div><div id="signinResult"><div v-for="(value, key) in commits">{{ key }}: {{ value }}</div></div></template></div><script src="./js/signup.js"></script>
</body></html>
  • 其中更新的部分如下:

client/app.html

<div><img id="ArthurSlog_icon" src="/image/ArthurSlog.png" alt="ArthurSlog_icon" />
</div>
  • 首先给 img 上个 id 标记,标记为 "ArthurSlog_icon",用于接下来样式的调整
  • 接下来,切换到 client 文件夹路径下

cd client

  • 建立一个新的文件夹 image,来存放图片文件

mkdir image

  • 下载图片 ArthurSlog.png 到 image 文件夹下
  • 现在,打开浏览器,输入 127.0.0.1:3000/app.html,点击 signin 按钮
  • 输入账号:ArthurSlog 密码:ArthurSlog,点击登陆,正常执行下,默认图片会显示出来
  • 接下来,我们需要来调整图片的 布局和定位
  • 打开 scss 文件

clinet/css/style.scss

$font-stack:    Helvetica, sans-serif;
$primary-color: #ff0000;body {font: 100% $font-stack;color: $primary-color;
}#signup-container {display: flex;justify-content: center;align-items: center;flex-direction: column;
}#signinResult {display: flex;flex-direction: column;
}#signinResult > div {background-color: #f1f1f1;width: 300px;margin: 5px;text-align: left;line-height: 50px;
}#ArthurSlog_icon {object-position: 50% 50%;width: 300px;object-fit: contain;border: 1px solid rgb(171, 255, 216);border-radius: 30px;background-color: silver;
}
  • 上面的代码参考 w3schools 的 css文档手册,我们使用 Flexbox 属性来定位和布局,另外参考CSS Demo: object-position,我们使用 object-position 属性来让图片居中
  • 其中新增的代码如下
#ArthurSlog_icon {object-position: 50% 50%;width: 300px;object-fit: contain;border: 1px solid rgb(171, 255, 216);border-radius: 30px;background-color: silver;
}
  • 现在,切换到 css 文件夹路径下

cd client/css/

  • 现在,我们要使用 Sass预编译器(其实就是一段代码,一个程序),来把 sass 文件转换为 css 文件
  • 根据 Sass官网的使用说明,"sass sass文件名 css文件名"

sass style.scss style.css

  • 现在,scss 文件就转换为 css 文件了,转换的结果如下:

client/css/style.css

body {font: 100% Helvetica, sans-serif;color: #ff0000;
}#signup-container {display: flex;justify-content: center;align-items: center;flex-direction: column;
}#signinResult {display: flex;flex-direction: column;
}#signinResult > div {background-color: #f1f1f1;width: 300px;margin: 5px;text-align: left;line-height: 50px;
}#ArthurSlog_icon {object-position: 50% 50%;width: 300px;object-fit: contain;border: 1px solid #abffd8;border-radius: 30px;background-color: silver;
}/*# sourceMappingURL=style.css.map */
  • 现在,打开浏览器,输入 127.0.0.1:3000/app.html,点击 signin 按钮
  • 输入账号:ArthurSlog 密码:ArthurSlog,点击登陆,正常执行下,默认图片会显示出来,并居中显示
  • 至此,我们对 默认头像 进行了布局和定位。

欢迎关注我的微信公众号 ArthurSlog

如果你喜欢我的文章 欢迎点赞 留言

谢谢

Slog42_支配vue框架初阶项目之博客网站-单页-默认头像的布局和定位相关推荐

  1. Slog41_支配vue框架初阶项目之博客网站-单页-登陆成功页面的布局和定位

    ArthurSlog SLog-41 Year·1 Guangzhou·China Aug 18th 2018 GitHub 掘金主页 简书主页 segmentfault 履霜坚冰至 开发环境MacO ...

  2. Slog29_支配vue框架初阶项目之博客网站-注册页面-单选按钮

    ArthurSlog SLog-29 Year·1 Guangzhou·China Aug 3th 2018 GitHub 掘金主页 简书主页 segmentfault 大学毕业 交了几万块钱的学费 ...

  3. SpringBoot实现代码生成器——基于SpringBoot和Vue的后台管理系统项目系列博客(十)

    系列文章目录 系统功能演示--基于SpringBoot和Vue的后台管理系统项目系列博客(一) Vue2安装并集成ElementUI--基于SpringBoot和Vue的后台管理系统项目系列博客(二) ...

  4. SpringBoot实现1对1、1对多、多对多关联查询——基于SpringBoot和Vue的后台管理系统项目系列博客(十八)

    系列文章目录 系统功能演示--基于SpringBoot和Vue的后台管理系统项目系列博客(一) Vue2安装并集成ElementUI--基于SpringBoot和Vue的后台管理系统项目系列博客(二) ...

  5. SpringBoot和Vue集成Markdown和多级评论——基于SpringBoot和Vue的后台管理系统项目系列博客(二十三)

    系列文章目录 系统功能演示--基于SpringBoot和Vue的后台管理系统项目系列博客(一) Vue2安装并集成ElementUI--基于SpringBoot和Vue的后台管理系统项目系列博客(二) ...

  6. SpringBoot实现分页查询——基于SpringBoot和Vue的后台管理系统项目系列博客(七)

    系列文章目录 系统功能演示--基于SpringBoot和Vue的后台管理系统项目系列博客(一) Vue2安装并集成ElementUI--基于SpringBoot和Vue的后台管理系统项目系列博客(二) ...

  7. beego框架 golang web项目-个人博客系统

    beego框架 golang web项目-个人博客系统 beego个人博客系统功能介绍 首页 分页展示博客 博客详情 评论 文章专栏 分类导航 资源分享 时光轴点点滴滴 关于本站 后台管理 登录 系统 ...

  8. Python实战项目之博客网站搭建

    参考:廖雪峰网站 https://www.liaoxuefeng.com/wiki/0014316089557264a6b348958f449949df42a6d3a2e542c000 http:// ...

  9. 订单支付和评论——基于Django框架的天天生鲜电商网站项目系列博客(十五)

    系列文章目录 需求分析--基于Django框架的天天生鲜电商网站项目系列博客(一) 网站框架搭建--基于Django框架的天天生鲜电商网站项目系列博客(二) 用户注册模块--基于Django框架的天天 ...

最新文章

  1. python电商项目源码_Python Django(WEB电商项目构建)
  2. centos7.2下安装mysql5.7数据库
  3. Cesium环境搭建成功和初步看一下它的示例
  4. 12面魔方公式图解法_三阶魔方入门
  5. vue从入门到进阶:简介(一)
  6. 与c++ 进行最简单的进程通信
  7. 基于JAVA+SpringMVC+Mybatis+MYSQL的学生信息管理系统
  8. ajax常见的面试题
  9. SiteMesh JSP布局框架介绍
  10. 基于光流模型的图像运动分析
  11. 有了这个列表,程序员不愁没练手的小项目了
  12. Day-26 多线程和多进程
  13. 游戏开发商是如何做到每日进帐410万美元的?
  14. 网易云音乐小程序 笔记
  15. 在IE中打开或下载文件
  16. list.sort和list.stream.sorted
  17. Vmotion迁移要求
  18. 怎么获取网易云歌单外链链接
  19. 在线练习毛笔书法或水墨画的html5网站,友基墨客M-Brush官方版
  20. MRAM学习笔记——4.SOT-hall器件的测试

热门文章

  1. C++ XML解析之TinyXML篇[转]
  2. Linux设置qt-android开发环境
  3. python基础知识~ 函数详解2
  4. python面向对象之方法
  5. NodeJS + Aliyun 实现 DDNS
  6. 进程管理supervisor的简单说明
  7. 多线程中的指令重排问题
  8. 阿里云ESC搭建SVN服务端
  9. 打包本地文件, 并使用Winscp上传脚本
  10. HTML5学习笔记(二):HTML基础学习之一