js 위 챗 채 팅 창 실현
효과 그림:
코드 부분
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title> </title>
<link rel="stylesheet" href="../css/ .css" rel="external nofollow" >
</head>
<body>
<div class="box">
<div class="phone">
<div class="header"></div>
<div class="content">
<ul class="list">
</ul>
<div class="content-bottom">
<img src="../image/one.jpeg" width="45px" height="45px" id="pic">
<input type="text" placeholder=" " class="myInput">
<input type="button" value=" " class="out">
</div>
</div>
<div class="footer"></div>
</div>
</div>
</body>
<script src="../js/ .js"></script>
</html>
*{
margin:0;
padding:0;
}
body{
margin:0;
padding:0;
}
.box{
margin:100px auto;
height:900px;
width:1200px;
background:linear-gradient(to right,violet,pink);
}
.phone{
top:50px;
position:relative;
width:500px;
height:800px;
background:#f6f6f6;
left:50%;
margin-left:-250px;
border-radius: 30px;
}
.phone .header{
position: absolute;
width:135px;
height:5px;
background:rgba(0,0,0,0.8);
-webkit-border-radius: 80px;
-moz-border-radius: 80px;
border-radius: 80px;
left:50%;
margin-left:-67.5px;
top:40px;
}
.phone .content{
position: absolute;
top:75px;
width:460px;
height: 640px;
background: #fff;
left:50%;
margin-left:-230px;
border-radius: 1px;
border:2px solid gray;
}
.phone .footer{
position: absolute;
width:50px;
height:50px;
background:pink;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
bottom:15px;
left:50%;
margin-left:-25px;
}
.content .list{
height:575px;
list-style-type: none;
overflow: hidden;
}
.list li{
margin-top:30px;
}
.content .list .left img{
display:inline-block;
margin: 0;
float: left;
margin-left:15px;
}
.content .list .left p{
color:#333333;
margin-left:78px;
width:320px;
padding:20px 10px;
font-size:20px;
background:pink;
border-radius: 6px;
text-align: left;
}
.content .list .right img{
display:inline-block;
margin: 0;
float:right;
margin-right:15px;
}
.content .list .right p {
text-align: right;
color: #333333;
margin-left: 37px;
width: 320px;
padding: 20px 10px;
font-size: 20px;
background: pink;
border-radius: 6px;
}
.content-bottom{
overflow: hidden;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
height: 65px;
background:rgba(0,0,0,0.2);
padding:10px 30px;
position: relative;
}
.content-bottom .myInput{
display: inline-block;
height:30px;
width:250px;
font-size:20px;
border-radius:5px;
border:1px solid #999999;
text-indent:10px;
outline:none;
position:absolute;
top:50%;
margin-top: -15px;
margin-left:20px;
}
.content-bottom .out{
height:32px;
width: 60px;
display: inline-block;
position: absolute;
right:30px;
top:50%;
border:1px solid #999999;
margin-top: -16px;
font-size:17px;
outline: none;
background:none;
cursor:pointer;
}
.content-bottom .out:hover{
background-color: pink;
}
var out = document.querySelector(".out");//
var myInput = document.querySelector(".myInput");
var pic = document.getElementById("pic");//
var onOff = true;
var list = document.querySelector(".list");// ul
pic.onclick=function(){
if(onOff){
pic.src = "../image/two.jpeg";
onOff = false;
}else {
pic.src = "../image/one.jpeg";
onOff = true;
}
};
out.onclick=function () {
var value = myInput.value;//
if(value == ""){
alert(" ");
}else{
if(onOff){
list.innerHTML += "<li class='left'><img src='../image/one.jpeg'/><p>" +value+ "</p></li>";
}else{
list.innerHTML += "<li class='right'><img src='../image/two.jpeg'/><p>" +value+ "</p></li>";
}
}
myInput.blur(myInput.value='');// ,
};
학습 수확:if 문장 에 대한 이해 강화이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[2022.04.19] 자바스크립트 this - 생성자 함수와 이벤트리스너에서의 this18일에 this에 대해 공부하면서 적었던 일반적인 함수나 객체에서의 this가 아닌 오늘은 이벤트리스너와 생성자 함수 안에서의 this를 살펴보기로 했다. new 키워드를 붙여 함수를 생성자로 사용할 때 this는...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.