forked from hzuapps/web-wechat-2019
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
113 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title> | ||
个人简历 | ||
</title> | ||
<meta charset="UTF-8"> | ||
<script> | ||
function f() | ||
{ var x=document.getElementById("ly").value; | ||
if(x=="") | ||
{ | ||
alert("输入为空,请输入留言!"); | ||
} | ||
else | ||
{ | ||
alert("留言成功!"); | ||
} | ||
} | ||
function changeColor() | ||
{ | ||
for(i=0; i<4; i++) | ||
if(f1.color[i].checked){ | ||
document.body.style.background = f1.color[i].value; | ||
} | ||
} | ||
</script> | ||
<link rel="stylesheet" type="text/css" href="weui.css"> | ||
</head> | ||
<body> | ||
<form name="f1"> | ||
<input type="radio" name="color" value="#FFF0F5" onclick="changeColor()">粉色 | ||
<input type="radio" name="color" value="#0000FF" onclick="changeColor()">蓝色 | ||
<input type="radio" name="color" value="#00FF00" onclick="changeColor()">绿色 | ||
<input type="radio" name="color" value="#FFFF00" onclick="changeColor()">黄色 | ||
</form> | ||
<div class="weui-cells__title">我的简历</div> | ||
<div class="weui-cells weui-check__label"> | ||
<div class="weui-cell weui-check__label"> | ||
<div class="weui-cell__bd"> | ||
<div id="word">个人照片</div> | ||
<div id="photo"> | ||
<img class="right" src="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1553604771&di=690c7b5ab093319a33761cfa0eb2cabb&imgtype=jpg&er=1&src=http%3A%2F%2Fphotocdn.sohu.com%2F20141017%2FImg405193001.jpg" width="45px"/> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="weui-cell weui-check__label"> | ||
<div class="weui-cell__bd"> | ||
<p>姓名</p><p>黄同学</p> | ||
</div> | ||
</div> | ||
|
||
<div class="weui-cell weui-check__label" > | ||
<div class="weui-cell__bd"> | ||
<p>性别</p><p>男</p> | ||
</div> | ||
</div> | ||
|
||
<div class="weui-cell weui-check__label" > | ||
<div class="weui-cell__bd"> | ||
<p>出生年月</p><p>1999/01</p> | ||
</div> | ||
</div> | ||
|
||
<div class="weui-cell weui-check__label" > | ||
<div class="weui-cell__bd"> | ||
<p>民族</p><p>汉族</p> | ||
</div> | ||
</div> | ||
|
||
<div class="weui-cell weui-check__label" > | ||
<div class="weui-cell__bd"> | ||
<p>联系方式</p><p>15627904890</p> | ||
</div> | ||
</div> | ||
|
||
<div class="weui-cell weui-check__label" > | ||
<div class="weui-cell__bd"> | ||
<p>院系专业</p><p>信息学院网络工程</p> | ||
</div> | ||
</div> | ||
|
||
<div class="weui-cell weui-check__label" > | ||
<div class="weui-cell__bd"> | ||
<p>自我介绍</p> | ||
<p>本人乐观真诚,积极向上,勇于创新,具有较强的适应能力</p> | ||
</div> | ||
</div> | ||
<div class="weui-cells"> | ||
<a class="weui-cell weui-cell_access" href="https://github.com/ZiLiangH/web-wechat-2019"> | ||
<div class="weui-cell__bd"> | ||
<p>我的Github主页</p> | ||
</div></a> | ||
</div> | ||
|
||
<div class="weui-cells__title">留言区</div> | ||
<div class="weui-cells weui-cells_form"> | ||
<div class="weui-cell"> | ||
<div class="weui-cell__bd"> | ||
<textarea class="weui-textarea" placeholder="请输入文本" rows="3" id="ly" ></textarea> | ||
<div class="weui-textarea-counter"><span>0</span>/200</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="weui-btn-area"> | ||
<a class="weui-btn weui-btn_primary" href="javascript:" id="showTooltips" onclick="f()">提交</a> | ||
</div> | ||
|
||
<div class="weui-cell__ft">made in HZL</div> | ||
</div> | ||
</body> | ||
</html> |