代码之家  ›  专栏  ›  技术社区  ›  Rajesh Kumar Dash

在CSS中,我可以不使用转换就获得聊天气泡吗?

  •  0
  • Rajesh Kumar Dash  · 技术社区  · 6 年前

    我目前正在尝试像iOS一样获得聊天气泡。我正在尝试使用 -webkit-transform: translate(0, -2px); 但是在像xulrunner和swtbrowser这样的老浏览器中,这个CSS指令在那些浏览器上不能正常工作,尽管它可以在所有最近的浏览器上工作。

    body {
      font-family: "Helvetica Neue";
      font-size: 20px;
      font-weight: normal;
    }
    
    section {
      max-width: 450px;
      margin: 50px auto;
     
    }
     div {
        max-width: 255px;
        word-wrap: break-word;
        margin-bottom: 20px;
        line-height: 24px;
      }
    
    .clear {
      clear: both
    }
    
    .from-me {
      position: relative;
      padding: 8px 14px;
      color: #ffffff;
      background: #5ca9db;
      border-radius: 12px;
      float: right;
      margin-left: 56px;
      }
      
      .from-me:before {
      content: "";
      position: absolute;
      bottom: -2px;
      right: -7px;
      height: 20px;
      border-right: 20px solid #5ca9db;
      border-bottom-left-radius: 16px 14px;
      -webkit-transform: translate(0, -2px);
    } 
    .from-me:after {
      content: "";
      position: absolute;
      bottom: -2px;
      right: -56px;
      width: 26px;
      height: 20px;
      background: #ffffff;
      border-bottom-left-radius: 10px;
      -webkit-transform: translate(-30px, -2px);
    }
    .from-them {
      position: relative;
      padding: 8px 14px;
      background: #f2f3f5;
      border-radius: 12px;
      float: left;
      margin-right: 56px;
    }
    
    .from-them:before {
      content: "";
      position: absolute;
      bottom: -2px;
      left: -7px;
      height: 20px;
      border-left: 20px solid #f2f3f5;
      border-bottom-right-radius: 16px 14px;
      -webkit-transform: translate(0, -2px);
    }
    
    .from-them:after {
      content: "";
      position: absolute;
      bottom: -2px;
      left: 4px;
      width: 26px;
      height: 20px;
      background: #ffffff;
      border-bottom-right-radius: 10px;
      -webkit-transform: translate(-30px, -2px);
    }
    <section>
      <div class="from-me">
        <p>Hey there!What's up?!</p>
      </div>
      <div class="clear"></div>
      
    </section>
    <section>
      <div class="from-them">
        <p>Hey there!What's up?!</p>
      </div>
      <div class="clear"></div>
      
    </section>

    虽然在Chrome上,它提供了正确的输出,但在旧的浏览器(如SWT浏览器和Xulrunner)上不起作用。在那些浏览器的输出下面。

    enter image description here

    正如我所说的 -webkit-transform: translate 在这些浏览器中没有给出正确的结果。没有任何指针 -WebKit转换:翻译 .

    2 回复  |  直到 6 年前
        1
  •  0
  •   Piotr Wicijowski    6 年前

    为了你的目的,因为你正在使用 absolute 定位,然后 translate 相当于对应的 top , right , bottom left 价值观。只需将translate中的值添加到这些值中,就可以得到以下内容:

    body {
      font-family: "Helvetica Neue";
      font-size: 20px;
      font-weight: normal;
    }
    
    section {
      max-width: 450px;
      margin: 50px auto;
     
    }
     div {
        max-width: 255px;
        word-wrap: break-word;
        margin-bottom: 20px;
        line-height: 24px;
      }
    
    .clear {
      clear: both
    }
    
    .from-me {
      position: relative;
      padding: 8px 14px;
      color: #ffffff;
      background: #5ca9db;
      border-radius: 12px;
      float: right;
      margin-left: 56px;
      }
      
      .from-me:before {
      content: "";
      position: absolute;
      bottom: 0;
      right: -7px;
      height: 20px;
      border-right: 20px solid #5ca9db;
      border-bottom-left-radius: 16px 14px;  
    } 
    .from-me:after {
      content: "";
      position: absolute;
      bottom: 0;
      right: -26px;
      width: 26px;
      height: 20px;
      background: #ffffff;
      border-bottom-left-radius: 10px;
    }
    .from-them {
      position: relative;
      padding: 8px 14px;
      background: #f2f3f5;
      border-radius: 12px;
      float: left;
      margin-right: 56px;
    }
    
    .from-them:before {
      content: "";
      position: absolute;
      bottom: 0;
      left: -7px;
      height: 20px;
      border-left: 20px solid #f2f3f5;
      border-bottom-right-radius: 16px 14px;
    }
    
    .from-them:after {
      content: "";
      position: absolute;
      bottom: 0;
      left: -26px;
      width: 26px;
      height: 20px;
      background: #ffffff;
      border-bottom-right-radius: 10px;
    }
    <section>
      <div class="from-me">
        <p>Hey there!What's up?!</p>
      </div>
      <div class="clear"></div>
      
    </section>
    <section>
      <div class="from-them">
        <p>Hey there!What's up?!</p>
      </div>
      <div class="clear"></div>
      
    </section>
        2
  •  1
  •   Bryce Howitson    6 年前

    您可能需要稍微调整一下外观,但是您可以使用不带任何转换的三角形。下面是几个例子。

    div {
      margin-bottom: 50px;
     }
    .bubble1, .bubble2 {
      width: 300px;
      height: 100px;
      border-radius: 10px 10px 0 10px;
      background-color: #5e98d6;
      position: relative;
      }
      
    .bubble1:after {
      content:'';
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0 15px 15px 0;
      border-color: transparent #5e98d6 transparent transparent;
      position: absolute;
      right:0;
      top:100%;
    }
    
    .bubble2:after {
      content:'';
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 15px 0 0 15px;
      border-color: transparent transparent transparent #5e98d6;
      position: absolute;
      left:100%;
      bottom:0;
    }
    <div class="bubble1"></div>
    
    <div class="bubble2"></div>