Pure JS Android like Toast para su aplicación web-atoast. js
| Autor: | maqboolkhan |
|---|---|
| Views Total: | 2,063 |
| Sitio oficial: | Ir a la web |
| Actualizado: | July 6, 2015 |
| Licencia: | MIT |
Vista prévia
Descripción
aToast. js es un JS puro escrito Android como tostadas sin necesidad de ninguna dependencia.
Funcionamiento
Agregue el script atoast. js en su HTML.
<script src="aToast-min.js"></script>
Configure las opciones.
toast = aToast({
// right, left, center
dir:"right",
// distance from top
top:20,
// distance from right
right:40,
// maximum width of the toast
maxWidth: 400,
// font family
font: 'TREBUCHET MS',
// font size
fontSize: 13px,
// font bold
bold: false
}); Muestra el brindis.
// toast.show(msg, hold);
toast.show("Toast message", 2);





