HTML5和CSS3開發第九章課後作業
第3題 QQ彩貝高階搜尋
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>First</title>
<style>
select{width: 70px;height:25px;margin-left: 10px;margin-bottom: 10px}
.bottem{
width:170px;
margin-left: 35px;
margin-bottom: 15px;
display: none;
animation: ser 2s linear 1;
}
#input1{
background-color: #CCCCCC;width: 70px;height: 30px
}
div h2{
margin-left: 15px;
border-bottom: 6px red solid;
padding-bottom: 12px;
width: 210px;
}
div p input{
margin-left: 15px;
width: 210px;
height: 40px;
}
#input1{
margin-left:90px;
margin-bottom: 15px;
}
div:hover .bottem{
display: block;
}
@keyframes ser {
0%{
opacity: 0;
height: 0%;
}
10%{
height: 20%;
opacity: 0.1;
}
20%{
height: 30%;
opacity: 0.2;
}
30%{
height: 50%;
opacity: 0.3;
}
50%{
height: 60%;
opacity: 0.5;
}
70%{
height: 80%;
opacity: 0.7;
}
100%{
height: 100%;
opacity: 1;
}
}
</style>
</head>
<body>
<div style="border: 1px solid #CCCCCC;width: 250px;margin: 0px auto">
<h2>高階搜尋</h2>
<p><input type="search" placeholder="請輸入關鍵字"></p>
<input type="submit" value="搜尋" id="input1">
<div class="bottem">
<select><option>場合</option></select>
<select><option>性別</option></select>
<select><option>風格</option></select>
<select><option>色系</option></select>
<select><option>價格</option></select>
<select><option>年齡</option></select>
<select><option>季節</option></select>
</div>
</div>
</body>
</html>
第4題 百度糯米
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>百度糯米購物資訊導航</title>
<style>
.div div img{
background: black;
vertical-align: middle;
z-index: 2;
right: 0px;
}
.div div span{
display: inline-block;
border: solid 1px #c9321a;
border-radius: 5px;
color: white;
width: 90px;
text-align: center;
opacity: 0;
background: #c9321a;
float: right;
position: relative;
left: 90px;
}
@keyframes name {
0%{
opacity: 0;
left: 0px;
}
33%{
opacity: 0.3;
left: -30px;
}
66%{
opacity: 0.6;
left: -60px;
}
100%{
opacity: 1;
left: -90px;
}
}
.div{
position: fixed;
right: 0px;
top: 200px;
}
.div div{
margin-top: 50px;
position: relative;
left: 90px;
}
.div div:hover span{
animation: name 0.1s linear both;
}
</style>
</head>
<body>
<img src="images/practice4/img.bmp" style="width: 100%; height: 100%">
<div class="div">
<div><span>購物車</span><img src="images/practice4/toolbar_05.png"></div>
<div><span>我的關注</span><img src="images/practice4/toolbar_10.png"></div>
<div><span>我的足跡</span><img src="images/practice4/toolbar_15.png"></div>
<div><span>我的訊息</span><img src="images/practice4/toolbar_19.png"></div>
</div>
</body>
</html>
相關文章
- HTML5和CSS3開發第七章課後作業HTMLCSSS3
- HTML5和CSS3開發第五章課後作業HTMLCSSS3
- HTML5和CSS3開發第八章課後作業HTMLCSSS3
- HTML5和CSS3開發第六章課後作業HTMLCSSS3
- HTML5和CSS3開發第九章知識點HTMLCSSS3
- JAVA課後作業Java
- 開課作業
- 課後作業1:字串加密字串加密
- 軟體開發與創新課程設計-第一週課後作業-軟體二次開發
- 微信後臺開發作業講解
- jQuery第五章課後作業jQuery
- jQuery第七章課後作業jQuery
- jQuery第二章課後作業jQuery
- HTML5和CSS3開發第七章知識點HTMLCSSS3
- 軟體工程概論 第一課:課後作業1軟體工程
- jQuery第三章課後作業jQuery
- jQuery第四章課後作業jQuery
- jQuery第六章課後作業jQuery
- jQuery第一章課後作業jQuery
- PHP基礎教程-22 課後作業05PHP
- PHP基礎教程-27 課後作業06PHP
- PHP基礎教程-28 課後作業07PHP
- PHP基礎教程-21 課後作業04PHP
- PHP基礎教程-12 課後作業02PHP
- PHP基礎教程-13 課後作業03PHP
- PHP基礎教程-06 課後作業01PHP
- 課後作業——30道四則運算
- HTML5和CSS3開發第八章知識點HTMLCSSS3
- HTML5和CSS3開發第六章知識點HTMLCSSS3
- HTML5和CSS3提高HTMLCSSS3
- 《iOS應用開發指南——使用HTML5、CSS3和JavaScript》——1.6 小結iOSHTMLCSSS3JavaScript
- HTML5前端開發就業前景,高薪背後的原因分析HTML前端就業高薪
- 90後大學生開發開源作業系統核心Lencer作業系統
- 不要痴迷於HTML5 和 CSS3HTMLCSSS3
- 【HTML5】Web前端——第四課:CSS3新增選擇器HTMLWeb前端CSSS3
- 9.23課堂作業
- 《Python程式設計》第九章部分課後練習題Python程式設計
- 【課程簡介】HTML5 Game Development/基於HTML5的遊戲開發HTMLGAMdev遊戲開發