@plurid/plurid-html v0.1.0
plurid is a MIT-licensed, open source JavaScript framework to view and use web content within a three-dimensional structure.
Scope
To generate a three-dimensional space within the browser where each page is a plane of content and transform the Internet navigation experience into an exploration.
Use
Manual
Place the pkg folder at the same level with a .html file, rename the folder to plurid,
import the .css file in the <head> of the .html document,
<link rel="stylesheet" href="./plurid/styles.css">import the .js file at the end of the <body>, before any other script,
<script src="./plurid/script.js"></script>place the content of the web page in a <plurid-page> tag, inside the <body>
<plurid-page>
<div>
The content of the web page
</div>
</plurid-page>Package Manager
Run the command
npm install pluridor
yarn install pluridDescription
The framework compiled files are in the ./pkg/ folder. Examples can be found in test/examples/.
For general design & architecture, features, and more: see ./about/notes/.
7 years ago