123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <title>Converse.js</title>
- <meta charset="utf-8">
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <meta name="description" content="Converse.js: A free chat client for your website" />
- <meta name="author" content="JC Brand" />
- <meta name="keywords" content="xmpp chat webchat converse.js" />
- <link rel="shortcut icon" type="image/ico" href="css/images/favicon.ico"/>
- <link type="text/css" rel="stylesheet" media="screen" href="/node_modules/bootstrap/dist/css/bootstrap.min.css" />
- <link type="text/css" rel="stylesheet" media="screen" href="/node_modules/font-awesome/css/font-awesome.min.css" />
- <link type="text/css" rel="stylesheet" media="screen" href="/css/theme.min.css" />
- <link type="text/css" rel="stylesheet" media="screen" href="/css/converse.min.css" />
- <script type="text/javascript" src="analytics.js"></script>
- <noscript><p><img src="//stats.opkode.com/piwik.php?idsite=1" style="border:0;" alt="" /></p></noscript>
- <![if gte IE 9]>
- <script src="/dist/converse.min.js"></script>
- <![endif]>
- </head>
- <body id="page-top" data-spy="scroll" data-target=".navbar-custom">
- <nav class="navbar navbar-custom navbar-fixed-top" role="navigation">
- <div class="container">
- <div class="navbar-header page-scroll">
- <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-main-collapse">
- <i class="fa fa-bars"></i>
- </button>
- <a class="navbar-brand" href="/#page-top">
- <i class="fa fa-play-circle"></i> <span class="light">Home</span>
- </a>
- </div>
- <!-- Collect the nav links, forms, and other content for toggling -->
- <div class="collapse navbar-collapse navbar-right navbar-main-collapse">
- <ul class="nav navbar-nav">
- <!-- Hidden li included to remove active class from about link when scrolled up past about section -->
- <li class="hidden">
- <a href="#page-top"></a>
- </li>
- <li class="page-scroll">
- <a href="#about">About</a>
- </li>
- <li class="page-scroll">
- <a href="#features">Features</a>
- </li>
- <li class="page-scroll">
- <a href="#contact">Contact</a>
- </li>
- <li>
- <a href="/docs/html/manual.html">User Manual</a>
- </li>
- <li>
- <a href="/docs/html/index.html">Documentation</a>
- </li>
- <li>
- <a href="https://github.com/jcbrand/converse.js/releases" class="button" target="_blank">Download</a>
- </li>
- </ul>
- </div>
- <!-- /.navbar-collapse -->
- </div>
- <!-- /.container -->
- </nav>
- <section class="intro" class="container">
- <div class="row">
- <h1 class="brand-heading"><i class="icon-conversejs"></i> Converse</h1>
- <div class="col-md-8 col-md-offset-2">
- <p class="intro-text">Demos:</p>
- <p class="intro-text">
- <ul style="list-style: none; font-size: 22px;">
- <li><a href="https://inverse.chat" target="_blank" rel="noopener">As a fullscreen application</a></li>
- <li><a href="/demo/anonymous.html">Anonymous login</a></li>
- <li><a href="/demo/embedded.html">Single MUC chatroom embedded into the page</a></li>
- <li><a href="/demo/without_bundled_dependencies.html">Dependencies loaded externally as <script> tags</a></li>
- </ul>
- </p>
- </div>
- </div>
- </section>
- </body>
- <script>
- require(['converse'], function (converse) {
- (function () {
- /* XXX: This function initializes jquery.easing for the https://conversejs.org
- * website. This code is only useful in the context of the converse.js
- * website and converse.js itself is NOT dependent on it.
- */
- var $ = converse.env.jQuery;
- $.extend( $.easing, {
- easeInOutExpo: function (x, t, b, c, d) {
- if (t==0) return b;
- if (t==d) return b+c;
- if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b;
- return c/2 * (-Math.pow(2, -10 * --t) + 2) + b;
- },
- });
- $(window).scroll(function() {
- if ($(".navbar").offset().top > 50) {
- $(".navbar-fixed-top").addClass("top-nav-collapse");
- } else {
- $(".navbar-fixed-top").removeClass("top-nav-collapse");
- }
- });
- //jQuery for page scrolling feature - requires jQuery Easing plugin
- $('.page-scroll a').bind('click', function(event) {
- var $anchor = $(this);
- $('html, body').stop().animate({
- scrollTop: $($anchor.attr('href')).offset().top
- }, 700, 'easeInOutExpo');
- event.preventDefault();
- });
- })();
- converse.initialize({
- // Please use this connection manager only for testing purposes
- bosh_service_url: 'https://conversejs.org/http-bind/',
- keepalive: true,
- message_carbons: true,
- play_sounds: true,
- roster_groups: true,
- show_controlbox_by_default: true,
- });
- });
- </script>
- </html>
|