我想要实现的基本上是将输入中的文本添加到最近附加的内容上。是否可以?它基本上就像一个聊天网站。用户编写的文本应该保存在附加对象中,但我无法实现它。
详细信息:- 用户键入消息的输入。附加只读输入的按钮。只读输入应包含用户在原始输入中键入的消息。
这是我的脚本!
<html>
<head>
<title>Friend's Circle</title>
<style>
.Hammer-Div {
background-color: #3a3939;
color: white;
height: 100%;
width: 80px;
border-radius: 10px 10px 10px 10px;
transition: 0.4s;
position: fixed;
}
.container {
display: inline-block;
cursor: pointer;
}
.bar1,
.bar2,
.bar3 {
width: 35px;
height: 5px;
background-color: rgb(105, 105, 105);
margin: 6px 0;
transition: 0.4s;
}
.change .bar1 {
-webkit-transform: rotate(-45deg) translate(-9px, 6px);
transform: rotate(-45deg) translate(-9px, 6px);
}
.change .bar2 {
opacity: 0;
}
.change .bar3 {
-webkit-transform: rotate(45deg) translate(-8px, -8px);
transform: rotate(45deg) translate(-8px, -8px);
}
.Items {
cursor: pointer;
}
p {
font-size: 30px;
display: none;
}
.Results {
height: 100%;
width: 92.5%;
background-color: #585858;
border-radius: 10px 10px 10px 10px;
float: right;
}
.MessageBox {
width: 90%;
height: 80%;
border-radius: 10px 10px 10px 10px;
background-color: hsl(0, 1%, 27%);
border: none;
float: left;
margin-left: 1%;
margin-top: 0.5%;
color: white;
font-size: 30px;
padding-left: 20px;
}
.MessageUnit {
height: 10%;
width: 100%;
background-color: #383838;
border-radius: 10px 10px 10px 10px;
}
犯罪嫌疑人X
相关分类