如何获得如下所示的视图?

时间:2012-05-18 10:42:41

标签: android css html5 cordova

嗨我正在开发一个使用phonegap的Android应用程序,我遇到了一个看起来像图片中显示的用户界面

enter image description here

这里的图像中有一个墙,不同用户的信息围绕着它。我希望以这种方式得到一些东西任何人都可以让我知道如何使用html和css获得这种UI。我希望我能解释一下,如果我的问题不清楚,我需要抱歉。谢谢。

2 个答案:

答案 0 :(得分:2)

正如我之前提到的,css3非常强大,只需通过这些demos来检查它可以实现的目标。其中大部分都可以在phonegap中完成,因为phonegap与css3配合得很好。 jquery页面转换也会有很大帮助。

答案 1 :(得分:1)

我在这里找到答案:http://net.tutsplus.com/tutorials/html-css-techniques/quick-tip-practical-css-shapes/

虽然这只是针对一方,但我认为让它在右侧工作也不是那么难。

编辑:

我让它为双方工作:

<!DOCTYPE html>  

<html lang="en">  
<head>  
    <meta charset="utf-8">  
    <title>CSS Shapes</title>  
    <style type="text/css">
        #container {  
            background: #666;  
            margin: auto;  
            width: 500px;  
            height: 700px;  
            padding-top: 30px;  
            font-family: helvetica, arial, sans-serif;  
        }  

        h1 {  
            background: #e3e3e3;
            border-top-left-radius:3px;
            border-top-right-radius:3px;
            border-bottom-right-radius:3px;
            background: -moz-linear-gradient(top, #e3e3e3, #c8c8c8);  
            background: -webkit-gradient(linear, left top, left bottombottom, from(#e3e3e3), to(#c8c8c8));  
            padding: 10px 20px;  
            margin-left: -20px;  
            margin-top: 0;  
            position: relative;  
            width: 100%;  

            -moz-box-shadow: 1px 1px 3px #292929;  
            -webkit-box-shadow: 1px 1px 3px #292929;  
            box-shadow: 1px 1px 3px #292929;  

            color: #454545;  
            text-shadow: 0 1px 0 white;  
        }  

        .arrow {  
            width: 0; height: 0;  
            line-height: 0;  
            border-left: 20px solid transparent;  
            border-top: 10px solid #c8c8c8;  
            top: 104%;  
            left: 0;  
            position: absolute;  
        }  
        .rightArrow {
            width: 0; height: 0;  
            line-height: 0;  
            border-right: 20px solid transparent;  
            border-top: 10px solid #c8c8c8;  
            top: 104%;  
            left: 100%;  
            margin-left:-20px;
            position: absolute;  
        }
    </style>
    <!--[if IE]>  
        <style>  
            .arrow { top: 100%; }  
        </style>  
    <![endif]-->  

</head>  
<body>  
     <div id="container">  

        <h1> My Heading <span class="arrow"></span> <span class="rightArrow"></span></h1>  

    </div>  
</body>  
</html>