Ir al contenido principal

Entradas

Mostrando entradas de septiembre, 2016

Ajustar alto de Iframe al contenido

    jQuery (window). on ( 'load' , function ( event ) {         document. getElementById ( "contenido" ). addEventListener ( "load" , autofitIframe );         //Ajusta el tamaño de un iframe al de su contenido interior para evitar scroll         function autofitIframe () {             if ( ! window. opera && document. all && document. getElementById ) {                 this . style . height = this . contentWindow .document. body . scrollHeight ;             } else if (document. getElementById ) {                 this . style . height = ( this . contentDocument . body . scrollHeight + 100 ) + "px" ;             }         }     });

Calculadora de Matrices

Primero que todo quiero agradecer a belial9826 por compartir su proyecto ya que gracias a la base creada por el pude extenderla funcionalidad de la aplicación para que opere fraccionarios naturalmente. http://jagonzalez.org/calculadora-de-matriz-en-java/ Esto fue una prueba didáctica para una clase de Álgebra Lineal. Descargar Fuente.

Custom File Input

CSS: div .album-files {     width : 100 % ;     height : 50px ;     float : left ;     font-family : 'Oswald' , sans-serif ; } div .album-files div .drag-drop {     float : left ;     height : 100 % ;     width : 100 % ;     text-align : center ;     position : relative ;     display : table;     overflow : hidden ;     background-color : #429FD8 ; } div .album-files div .drag-drop:hover , div .album-files div .drag-drop:hover:active {     background-color : #1C70B7 ; } div .album-files div .drag-drop input[type=file] {     height : 100 % ;     width : 100 % ;     position : absolute ;     cursor : pointer ;     opacity : 0 ;     top : 0 ;     left : 0 ;     z-index : 1 ; } div .album-files div .drag-drop span {     position : relative ;     display : table-cell ;     vertical-align : middle ;     color : #fff ;     text-align : center ;     font-size : 18px ;     line-height : 25px ;     fon