登陆页面的设计问题
今天没事,想做个个人网站,但是登陆页面太难看了,背景图片之类弄的很单调,个人想改善下,想问下,看其他网站做的那种登陆页面再背景图片中嵌入两个输入框和一些提交按钮,这怎么弄,这图片是自己切出来吗?还是图片不变,后面的东西自己加呢,我想做成这样的一个效果大家可以看下哈,有什么想法和操作步骤的分享分享啊
2013-08-23 17:16
2013-08-23 20:55
2013-08-24 00:20
程序代码:<!DOCTYPE>
<html xmlns="http://www. <head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>_bccn_</title>
<style type="text/css">
*{
margin: 0;
font-size: 14px;
}
input{
border: none;
color: #fff;
background-color: #567;
}
input:hover{
font-size: 3em;
background-color: #abc;
}
</style>
</head>
<body>
<div class="bccn">
<input type="button" value="靠过来"/>
</div>
</body>
</html>
2013-08-26 19:48