Popup Chat Window With CSS and Javascript Creation
- Web html5, css3, javascript, php, sql, jquery, xml, ajax, web design & development, photo maker, SEO.
- Online web design, along with everything you need for a complete website.
- popup chat window with css and javascript creation, with contact php. A complete email system.
demo popup chat window
<style>
.chat {
background-image: url(https://www.netbax.net/pages/creation/css/email.png);
width: 90px;
height: 90px;
background-color: transparent;
border-radius: 0%;
border: 0px solid #ff0000;
vertical-align: middle;
position: fixed;
bottom: 80px;
right: 20px;
display: block;
cursor: pointer;}
.te {
width: 360px;
height: 440px;
border-radius: 10px;
background-color:#222;
padding: 16px;
z-index: 9999999;
position: fixed;
bottom: 100px;
right: 155px;
display: none;}
#netb {
background-image: url(https://www.netbax.net/pages/creation/css/logo.png);
background-position: 5px 0px;
background-repeat: no-repeat;}
.netb1 {
font-size: 17px;
min-width: 30px;
height: 30px;
float:right;
font-weight: normal;
cursor: pointer;
transition: all 0.3s ease;
position: relative;
display: inline-block;
outline: none;
border-radius: 5px;
z-index: 0;
background-color: transparent;
overflow: hidden;
border: 1px solid #fff;
color: #ccc;}
.netb1:hover {
color: #fff;
border-color: #fff;}
.netb1:hover:after {
width: 100%;}
.netb1:after {
content: "";
position: absolute;
z-index: -1;
transition: all 0.3s ease;
left: 0;
top: 0;
width: 0;
height: 100%;
background-color:#960018;}
.netb2 {
font-size: 17px;
min-width: 30px;
height: 30px;
float:left;
font-weight: normal;
cursor: pointer;
transition: all 0.3s ease;
position: relative;
display: inline-block;
outline: none;
border-radius: 5px;
z-index: 0;
background-color:#960018;
overflow: hidden;
border: 1px solid #fff;
color: #fff;}
.netb2:hover {
color: #ccc;
border-color: #fff;}
.netb2:hover:after {
width: 100%;}
.netb2:after {
content: "";
position: absolute;
z-index: -1;
transition: all 0.3s ease;
left: 0;
top: 0;
width: 0;
height: 100%;
background-color:#222;}
.netb3 {
font-size: 17px;
min-width: 30px;
height: 30px;
margin-left: 80px;
font-weight: normal;
cursor: pointer;
transition: all 0.3s ease;
position: relative;
display: inline-block;
outline: none;
border-radius: 5px;
z-index: 0;
background-color:#008000;
overflow: hidden;
border: 1px solid #fff;
color: #fff;}
.netb3:hover {
color: #ccc;
border-color: #fff;}
.netb3:hover:after {
width: 100%;}
.netb3:after {
content: "";
position: absolute;
z-index: -1;
transition: all 0.3s ease;
left: 0;
top: 0;
width: 0;
height: 100%;
background-color:#222;}
.netb4{
padding:8px;
display:block;
border:none;
border-bottom:1px solid #ccc;
width:100%;
border-radius:4px;
color: #000;}
.netb5{
display:block;
border:none;
border-bottom:1px solid #ccc;
width:100%;
height:100px;
border-radius:4px;
text-decoration:none;
color: #000;}
.netb6 {
font-size:14px;
text-transform: capitalize;
padding: 0px 50px;
margin-left:60px;
color: #fff;
font-family:tahoma;}
::placeholder {
color: #333;
opacity: 1;}
.x-netb{margin-top:16px;margin-bottom:16px}
</style>
<div class="chat" id="open">
<div class="chat" onclick="chat()"></div>
</div>
<div id="close"></div>
<div class="te" id="textarea">
<div id="netb"><p class="netb6">If you’d like to send us feedback, or have any other question, please fill out the form below and we will get back to you as soon as possible.</p></div>
<form method="post" name="contactform" action="contact.php">
<div class="x-netb"><input class="netb4" type="text" name="name" placeholder="Name"></div>
<div class="x-netb"><input class="netb4" type="text" name="email" placeholder="Email Address"> </div>
<div class="x-netb"><textarea class="netb5" type="text" name="message" placeholder="Message"></textarea></div>
<button type="submit" class="netb2">Submit</button>
<button type="button" id="close-button" class="netb3" onclick="chatClose()">Close</button>
<button type="reset" value="Reset" name="reset" class="netb1">Reset</button>
</form></div>
<script>
function chat() {
document.getElementById("open").style.display = "none";
document.getElementById("close").style.display = "block";
document.getElementById("textarea").style.display = "block";}
function chatClose() {
document.getElementById("open").style.display = "block";
document.getElementById("close").style.display = "none";
document.getElementById("textarea").style.display = "none";}
</script>
All Basic HTML5
HTML is the main markup language for web pages, and its elements are the basic building blocks of web pages. HTML is written in the form of HTML elements consisting of tags enclosed in "greater than" and "less than" symbols within the content of the web page.
All Basic CSS3
CSS (Cascading Style Sheets) is a computer language that belongs to the category of style sheet languages used to control the appearance of a document written in a markup language.It is used to control the appearance of a document written in HTML and XHTML, that is, to control the appearance of a web page and a website in general.
js JAVASCRIPT
Javascript is a set of computer software and specifications developed by James Gosling at Sun Microsystems, later acquired by Oracle Corporation, which provides a system for developing application software and its development in a multi-platform computing environment.
CREATIONS
In this chapter I call creation I will present you creations html, css and javascript that are very useful and creative in a web site. You can get them ready-made with Netbax creations or create them yourself as you wish with the help provided by the Netbax editor.
NAVIGATION Bar
having easy-to-use horizontal & vertical menu is important for any web site. with css you can transform boring html menus into good-looking horizontal & vertical bars. horizontal & vertical menu is such an important part of your website. it’s how your visitors navigate to the main areas of your site and makes it easy for them to find.
WEB BUTTONS
Collection of hand-picked free HTML and CSS button code examples.In this article, we'll see some really cool looking responsive buttons using only a few lines of CSS.You are free to copy, modify and use this code as you wish.All the buttons shown here can scale accordingly to the font-size attribute, and should work in any relatively recent browser.
