2

嗨,我正在使用 phonegap 开发一个 android 应用程序,我遇到了一个类似于图片中所示的 UI

在此处输入图像描述

在图像中,有一堵墙,不同用户的信息围绕着它。我想以这种方式得到一些东西,谁能给我一个想法,如何使用 html 和 css 获得这种 UI。如果我的问题不清楚,我希望我能够解释我需要什么对不起。谢谢你。

4

2 回答 2

2

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

于 2012-05-18T10:52:37.903 回答
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>  
于 2012-05-22T13:15:25.177 回答