Explous is a library of responsive components for front-end interfaces development.
It's an open source library developed with HTML5 and Javascript. It allows fast and complex prototypes building, components management is done by Javascript, facilitating the process of calculating spaces in grids, tables, cards...
Starting with Explous is very simple, just add the library from your Javascript. You can download it and implement it in your project or simply add it from our server.
Just add the following <script> elements into your HTML pages
<script src="https://code.explous.com/1.1.0/explous.min.js"></script>
Download the Javascript (127kb) Just add the following <script> elements into your HTML pages
<script src="./explous.min.js"></script>
Implement explous using npm:
npm install @explous/explous@latest
import { ExplousButton } from '@explous/explous'
ngOnInit(){
ExplousButton.init({
container:"explous_button",
changeColor:"#0d47a1",
})
}
Your website will be built in HTML5, it should look like this:
<!DOCTYPE>
<html lang="en">
<head>
<meta name="viewport"content="width=device-width, initial-scale=1.0">
<title>Title</title>
<script src="./explous.min.js"></script>
</head>
<body>
<h1>Hello World!</h1>
</body>
</html>
<button id="explous_button"></button>
<script>
ExplousButton.init({
container:"explous_button",
color:"#ffffff",
background:"#1565c0",
border:"#1565c0",
changeColor:"#0d47a1",
text:"Success"
})
</script>
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
1.1.0. Licensed Mit.
- Daniel Moreno - Initial work - Danielmoreno510
See also the list of contributors who participated in this project.
This project is licensed under the MIT License