Skip to content
NickWare edited this page Dec 27, 2021 · 18 revisions

Welcome to the Facefull wiki!

Get started

Including files

<script type="text/javascript" src="facefull/facefull.min.js" charset="utf-8"></script>
<link rel="stylesheet" href="facefull/facefull.min.css">

Initialization with JavaScript

facefullCreate();
// or facefullCreate(true) to init in native mode

window.addEventListener('load', function() {
    facefull.doInit();
});

Native mode

Native mode allows you to use Facefull to create a user interface for native desktop applications using the webview component. In native mode you can use built-in event system to communicate with your native desktop application backend. All you need to do is implement a bridge - the communication system between your application backend and the user interface.

Learn more about Facefull bridge interface

Available UI controls

Clone this wiki locally