Toggle navigation
Bootsnipp
Bootstrap
For
CSS Frameworks
Bootstrap
Foundation
Semantic UI
Materialize
Pure
Bulma
References
CSS Reference
Tools
Community
Page Builder
Form Builder
Button Builder
Icon Search
Dan's Tools
Diff / Merge
Color Picker
Keyword Tool
Web Fonts
.htaccess Generator
Favicon Generator
Site Speed Test
Snippets
Featured
Tags
By Bootstrap Version
4.1.1
4.0.0
3.3.0
3.2.0
3.1.0
3.0.3
3.0.1
3.0.0
2.3.2
Register
Login
"Like Hangout Chat"
Bootstrap 3.1.0 Snippet by
kinjal9768
3.1.0
chat
Preview
HTML
CSS
JS
View Full Screen
Forked from
Fork
Fork this
Parent
1.8K
 
0 Fav
Post to Facebook
Tweet this
<link href="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <div class="container"> <div class="row chat-window col-xs-5 col-md-3" id="chat_window_1" style="margin-right:0;"> <div class="col-xs-12 col-md-12"> <div class="panel panel-default"> <div class="panel-heading top-bar"> <div class="col-md-8 col-xs-8"> <h3 class="panel-title"><span class="glyphicon glyphicon-comment"></span> Chat - Miguel</h3> </div> <div class="col-md-4 col-xs-4" style="text-align: right;"> <a href="#"><span id="minim_chat_window" class="glyphicon glyphicon-minus icon_minim"></span></a> <a href="#"><span class="glyphicon glyphicon-remove icon_close" data-id="chat_window_1"></span></a> </div> </div> <div class="panel-body msg_container_base"> <div class="row msg_container base_sent"> </div> <div class="panel-footer"> </div> </div> </div> </div>
body{ height:400px; position: fixed; bottom: 0; } .col-md-2, .col-md-10{ padding:0; } .panel{ margin-bottom: 0px; } .chat-window{ bottom:0; position:fixed; float:right; margin-left:10px; } .chat-window > div > .panel{ border-radius: 5px 5px 0 0; } .icon_minim{ padding:2px 10px; } .msg_container_base{ background: #e5e5e5; margin: 0; padding: 0 10px 10px; max-height:300px; overflow-x:hidden; } .top-bar { background: #666; color: white; padding: 10px; position: relative; overflow: hidden; }
$(document).on('click', '.panel-heading span.icon_minim', function (e) { var $this = $(this); if (!$this.hasClass('panel-collapsed')) { $this.parents('.panel').find('.panel-body').slideUp(); $this.addClass('panel-collapsed'); $this.removeClass('glyphicon-minus').addClass('glyphicon-plus'); } else { $this.parents('.panel').find('.panel-body').slideDown(); $this.removeClass('panel-collapsed'); $this.removeClass('glyphicon-plus').addClass('glyphicon-minus'); } }); $(document).on('focus', '.panel-footer input.chat_input', function (e) { var $this = $(this); if ($('#minim_chat_window').hasClass('panel-collapsed')) { $this.parents('.panel').find('.panel-body').slideDown(); $('#minim_chat_window').removeClass('panel-collapsed'); $('#minim_chat_window').removeClass('glyphicon-plus').addClass('glyphicon-minus'); } }); $(document).on('click', '.icon_close', function (e) { //$(this).parent().parent().parent().parent().remove(); $( "#chat_window_1" ).remove(); });
Questions / Comments:
Post
Posting Guidelines
Formatting
- Now
×
Close
Donate
BTC: 12JxYMYi6Vt3mx3hcmP3B2oyFiCSF3FhYT
ETH: 0xCD715b2E3549c54A40e6ecAaFeB82138148a6c76