Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zircleUI/zircleUI
π zircle-ui is a frontend library to develop zoomable user interfaces.
https://github.com/zircleUI/zircleUI
css design experimental frontend-library html javascript ui-components uikit vue zircle-ui
Last synced: 13 days ago
JSON representation
π zircle-ui is a frontend library to develop zoomable user interfaces.
- Host: GitHub
- URL: https://github.com/zircleUI/zircleUI
- Owner: zircleUI
- License: mit
- Created: 2017-08-17T04:00:41.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-06-27T10:37:12.000Z (5 months ago)
- Last Synced: 2024-07-16T18:12:56.734Z (4 months ago)
- Topics: css, design, experimental, frontend-library, html, javascript, ui-components, uikit, vue, zircle-ui
- Language: Vue
- Homepage: https://zircleui.github.io/docs/
- Size: 5.48 MB
- Stars: 937
- Watchers: 22
- Forks: 63
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
A frontend library to develop zoomable user interfaces.
Like it? Get involved, fork it or leave a star.
## Status
ππππ
**Zircle** was split into two independent projects:
- [**Zumly**](https://github.com/zumerlab/zumly), as a zoomable engine library.
- [**Orbit**](https://github.com/zumerlab/orbit) as a CSS framework for composing radial designs and UIs.They can be used together as well. Both Orbit and Zumly are lightweight and don't depend on other tools like Vue.
## What is zircle-ui?**Zircle-ui** is an experimental frontend library to develop [zoomable user interfaces (ZUI)](https://en.wikipedia.org/wiki/Zooming_user_interface). It is based on [vue.js](https://vuejs.org/) and JavaScript and comes with a set of components to create unconventional user interfaces.
## Features
- **Zoomable UI/UX:** Enjoy a different UI/UX with the built-in zoomable navigation.
- **Circles everywhere:** Breaking away from the conventional UI with a circular UI Kit.
- **Responsive:** zircle-ui works pretty well on mobile devices and big screens.
- **Customizable themes:** Aren't the integrated color themes enough? No problem, it is easy to create new ones.
- **Zero-conf routes:** Using Vue-router? Let **zircle-ui** handles the routes for you.
## When to use zircle-ui?
You can try **zircle-ui** to develop a wide range of applications, such as: dashboards, health/fitness trackers, IOT hubs or controllers, contact management, information and entertainment, interactive menus, etc.
In general, using **zircle-ui** should be fine if your application is highly interactive and you need to intuitively view and control information without loosing the userβs attention.
## Using Vue 3?
Check out [zircleui/vue3 branch](https://github.com/zircleUI/zircleUI/tree/vue3)## About zircle-ui
**Zircle-ui** is the first [Open Source Project](https://opensource.guide/starting-a-project/) I've made and it was possible thanks to the Open Source community, specially the [Vue](https://vuejs.org) community. In retribution, I've created a project of the highest quality I could within my limitations since I'm not a professional developer.**Zircle-ui** intends to promote a different approach in the universe of UIs. My main motivation is believing there is room for a new UI/UX not constrained to grid layouts or to squared shapes.
**Zircle-ui** was inspired by the idea underneath some really awesome projects and articles like [prezi](https://www.prezi.com), [impress.js](https://github.com/impress/impress.js), [tizen](https://www.tizen.org/), [zoomooz](http://jaukia.github.io/zoomooz/), [creativebloq's article](https://www.creativebloq.com/create-zoomable-user-interface-css-transforms-9114269), [google maps](http://maps.google.com), [bootstrap](https://getbootstrap.com/), [UIKit](https://getuikit.com/) and [bulma](https://bulma.io) among others.
---
## Table of contents
- [Documentation, examples and tutorial](#documentation-examples-and-tutorial)
- [Installation](#installation)
* [Direct download](#--direct-download)
* [Content delivery networks (CDN)](#--content-delivery-networks-cdn)
* [NPM or Yarn](#--npm-or-yarn)
- [Quick Start](#quick-start)
* [Code Sandbox](#--code-sandbox)
* [Browser](#--browser)
* [Single File Components and vue-cli](#--single-file-components-and-vue-cli)
- [Contributing](#contributing)
- [License](#license)---
## Documentation, examples and tutorial
Please checkout [**https://zircleui.github.io/docs/**](https://zircleui.github.io/docs/) to learn how to use **zircle-ui**. For early **zircle-ui** users a **easy-to-follow migration guide** [is available here](https://zircleui.github.io/docs/guide/migration.html)## Installation
### - Direct download
Just download **zircle-ui** from [Github](https://github.com/zircleUI/zircleUI/tree/master/dist). You need to download the zircle.umd.js or the zircle.umd.min.js file along with the zircle.css file.### - Content delivery networks (CDN)
Include `https://unpkg.com/zircle` in your project with `` tag. With CDN you will have the latest version of **zircle-ui** as soon as it is published to NPM. You can also browse the source of the npm package at [https://unpkg.com/zircle/](https://unpkg.com/zircle/)### - NPM or Yarn
NPM or Yarn are the recommended installation method for **zircle-ui**, if you are building medium to large scale applications.Create a project folder and inside it run:
```bash
npm install zircle
# OR
yarn add zircle
```> - [Install Vue.js](https://vuejs.org/v2/guide/installation.html) before **zircle-ui**.
> - For small applications or prototyping you can directly use **zircle-ui** into a browser and for more complex apps you can use **zircle-ui** with [Single File Components (SFC)](https://vuejs.org/v2/guide/single-file-components.html).## Quick Start
There are several options to setup and start using **zircle-ui**.### - Code Sandbox
The easiest way to try and start using **zircle-ui** is using [JSFiddle](https://jsfiddle.net/tinchox5/37mr5324/) or [Codepen](https://codepen.io/zircle/pen/ypZdWZ). For **zircle-ui** projects based on vue-cli 3 you can try [CodeSandbox](https://codesandbox.io/s/y26p3q79k9)### - Browser
After you have installed **zicle ui** using [direct download](#--direct-download) or [CDN](#--content-delivery-networks-cdn), the following starter template creates a Vue Instance and provides `<z-canvas>` component to start the development of your **zircle-ui** application.```html
<!DOCTYPE html>
<html>
<head>
<!-- Vue.js -->
<script type="text/javascript" src="https://unpkg.com/vue">
const home = {
template: `<z-view> Hello World! </z-view>`
}
new Vue({
el: '#app',
components: {
home
},
mounted () {
this.$zircle.setView('home')
}
})