1

我想为我的应用程序开发一个登录页面。我在互联网上搜索并找到了一个 .psd 文件。我将为它编写自己的 JavaScript 代码,但如何使用该 .psd 文件来获取适用于编程目的的 css 文件和图像?

.psd 文件的链接:http: //www.premiumpixels.com/freebies/elegant-login-form-design-psd/

4

2 回答 2

2

编辑
你可以找到一些 PSD-to-CSS 转换器,例如:http://psd2htmlconverter.com/en/ 但是你会得到一堆无意义的 html 标记和 CSS 代码
有一点 HTML-CSS 知识,你可以只需查看图像并使用基本的图像编辑器即可创建您想要的任何内容。
教程如:http ://www.1stwebdesigner.com/freebies/psd-htmlcss-conversion-tutorials/

或者...


为什么你不使用纯 CSS / CSS3 ?

还有一点 jQuery 魔法?
(没有使用图像!)

登录表格演示

登录表单演示

HTML:

<div id="loginContainer">
    <div id="loginForm">        
        <b>Username:</b><br>
        <input type="text" name="uname" /><br>
        <b>Password:</b> <span><a href="#">Forgot your password?</a></span><br>
       <input type="text" name="psswd" />       
    </div>  
    <div id="loginFormFooter">       
        <input type="checkbox"/> Keep me logged in <input class="login" type="button" value="Login"/>      
    </div>
</div>

CSS:

#loginContainer{
    font-family:Arial, Helvetica, sans-serif;
    color:#666;
    font-size:17px;
    position:relative;
    width:400px;
    height:290px;
    background:#fff;
    border:1px solid #D1DCDE;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
#loginForm{
    position:relative;
    width:350px;
    height:150px;
    padding:25px;
    line-height:34px;
}
#loginForm input{
    border:1px solid #D1DCDE;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    width:322px;
    padding:0px 12px;
    height:30px;
    line-height:30px;
}
.active{
     border:1px solid #B8D4EA;
    -webkit-box-shadow: 0px 0px 1px 7px #F3F8FC;
       -moz-box-shadow: 0px 0px 1px 7px #F3F8FC;
            box-shadow: 0px 0px 1px 6px #F3F8FC;       
}
#loginForm span{
    position:absolute;
    width:300px;
    right:25px;
    text-align:right;
}
#loginForm span a{
    color:#666;
    font-size:15px;
    text-decoration:none;
}
#loginFormFooter{
    position:relative;
    width:350px;
    height:39px;
    padding:25px;
    background:#F0F5F8;
    border-top:1px solid #D1DCDE;
    line-height:34px;
}
#loginFormFooter .login{
    position:absolute;
    height:38px;
    right:25px;
    width:80px;
    text-align:center;
    border:1px solid #7EAFCD;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    border-radius: 18px;
    font-weight:bold;
    color:#fff;
    text-shadow: 1px 0px 1px #999;
    filter: dropshadow(color=#999, offx=1, offy=1);
    background: #b3e1ef; /* Old browsers */
    background: -moz-linear-gradient(top, #b3e1ef 0%, #7eafcd 100%, #a8d1dd 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#b3e1ef), color-stop(100%,#7eafcd), color-stop(100%,#a8d1dd)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #b3e1ef 0%,#7eafcd 100%,#a8d1dd 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #b3e1ef 0%,#7eafcd 100%,#a8d1dd 100%); /* Opera11.10+ */
    background: -ms-linear-gradient(top, #b3e1ef 0%,#7eafcd 100%,#a8d1dd 100%); /* IE10+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b3e1ef', endColorstr='#a8d1dd',GradientType=0 ); /* IE6-9 */
    background: linear-gradient(top, #b3e1ef 0%,#7eafcd 100%,#a8d1dd 100%); /* W3C */
}

jQuery:

$('#loginForm input[type="text"]').bind('focus',function(){
   $(this).addClass('active').siblings().removeClass('active');
});

$('#loginForm input[type="text"]:eq(0)').focus();
于 2011-09-10T18:37:37.000 回答
0

您需要编写 HTML 和 CSS 代码来创建与 PSD 文件匹配的布局。许多视觉元素可以用 CSS 创建,有些可能需要是图像。

您需要在 Photoshop 中打开文件,隔离图形元素并使用 Photoshop 的save for web命令来保存可以包含在 HTML 中的 jpg/png 图像。

如果您没有使用 HTML 和 CSS 的经验,这里有一些很好的学习资料:http: //htmldog.com/

或者你可以聘请专门从事这种事情的前端开发人员!

您不需要编写任何 Javascript 代码来完成这项工作 - 除非您正在做一些特别花哨的事情。

于 2011-09-10T17:43:28.997 回答