gpt4 book ai didi

jquery - 在其容器底部并排打开聊天 div,Facebook 风格的聊天

转载 作者:行者123 更新时间:2023-12-01 07:49:21 28 4
gpt4 key购买 nike

我正在使用以下代码,该代码用于基本的 Facebook 风格聊天。

.otherarea div 用于容纳多个聊天 div。 .friends div 用于显示在线用户列表。

当我单击 .friends 内的任何用户时,我需要在 .otherarea 内显示一个聊天框在.otherarea的右下角

但它不起作用(如 FIDDLE 所示)。

我想打开 .otherarea 右下角的一个聊天框,如果用户单击其他用户,第二个聊天框应与前一个聊天框并排打开,就像 Facebook 聊天中发生的情况一样。

<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<title>TODO supply a title</title>
<meta charset="windows-1252">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
html,body{
height:100%;
margin:0
}
.friends
{
height:100%;
width:20%;
background-color:#ccccff;
float:right
}
.otherarea{
height:100%;
width:80%;
background-color:cadetblue;
float:left;
position:relative;

}
.chat
{
height:200px;
width:200px;
background-color: red;
display:inline-block;
vertical-align: bottom





}
#main
{
position:relative;
width:100%;
height:100%;
}
</style>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script>
$(document).ready(function(){

$(".friends").click(function(){
$(".otherarea").append("<div class=chat></div>");

});

});
</script>
</head>
<body>
<div id="main">
<div class="otherarea"></div>
<div class="friends"></div>
</div>
</body>
</html>

最佳答案

我已经修改了你的fiddle,请查看:https://jsfiddle.net/Lz03Lgwc/3/

我已将 display: flex; 添加到您的容器,并将 align-self: flex-end; 添加到 chat 类,这样就可以它们在底部彼此相邻地显示。

        .otherarea{
height:100%;
width:80%;
background-color:cadetblue;
float:left;
position:relative;
display: flex; /* <- this to the container */
justify-content: flex-end;
}

.chat
{
height:200px;
width:200px;
background-color: red;
display:inline-block;
align-self: flex-end; /* <- and this to the elements */
}

Flexbox 受到广泛支持,但当然,您在使用 IE 10 及更低版本时可能会遇到问题。 See the compatibility list

关于jquery - 在其容器底部并排打开聊天 div,Facebook 风格的聊天,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31871518/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com