Skip to content
Snippets Groups Projects
Commit 4d2da1f3 authored by Otto Zaiser's avatar Otto Zaiser
Browse files

Pequeños cambios de fade in y transitions

parent 2cb5ecb0
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,7 @@ body{
text-align: center;
-webkit-border-radius: 5px;
border-radius: 5px;
transition: 0.3s;
}
.dropArea:hover{
background-color: #f0f7ff;
......
......@@ -35,7 +35,7 @@ function drop(e){
e.preventDefault();
$('#ots_div').html('<img src="' + loader_gif + '">');
$('#ots_div').show();
$('#ots_div').fadeIn('fast');
var file = e.dataTransfer.items[0].getAsFile();
......@@ -61,7 +61,7 @@ function drop(e){
var ots = ' {"file_hash": "' + file_hash + '", "ots": "' + response.temporay_ots + '"}';
$('#ots_div').html(ots);
$('#ots_div').show();
$('#ots_div').fadeIn('fast');
}
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment