Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var Calculadora = {
- init: function(){
- this.aplicarEfectoTeclas();
- },
- aplicarEfectoTeclas: function(){
- var teclas = document.getElementsByClassName('tecla');
- for(var i = 0; i <teclas.length; ++i) {
- teclas[i].onmousedown = this.presionarTecla;
- teclas[i].onmouseup = this.soltarTecla;
- }
- },
- presionarTecla: function(event){
- var tecla = event.target;
- console.log(tecla);
- tecla.style.width = (tecla.style.width - 5) + "px";
- tecla.style.height = (tecla.style.height - 5) + "px";
- },
- soltarTecla: function(event){
- var tecla = event.target;
- tecla.style.width = (tecla.style.width + 5) + "px";
- tecla.style.height = (tecla.style.height + 5) + "px";
- }
- };
- Calculadora.init();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement