����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 74.208.127.88 / Your IP : 216.73.216.156 Web Server : Apache/2.4.41 (Ubuntu) System : Linux ubuntu 5.4.0-163-generic #180-Ubuntu SMP Tue Sep 5 13:21:23 UTC 2023 x86_64 User : www-data ( 33) PHP Version : 7.4.3-4ubuntu2.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/self/root/var/www/html/abcseguridad/ |
Upload File : |
<!-- Botón subir --> <button id="btn-up" title="Subir arriba" style="display:none;"> <i class="fa fa-arrow-up"></i> </button> <style> #btn-up { position: fixed; bottom: 20px; right: 20px; background-color: #005b9f; color: white; border: none; padding: 10px 14px; border-radius: 50%; font-size: 20px; cursor: pointer; z-index: 1000; box-shadow: 0 2px 6px rgba(0,0,0,0.3); transition: background-color 0.3s; } #btn-up:hover { background-color: #003f6b; } </style> <script> // Mostrar botón solo cuando llegas al final de la página window.addEventListener('scroll', function() { const scrollTop = window.pageYOffset || document.documentElement.scrollTop; const windowHeight = window.innerHeight; const docHeight = document.documentElement.scrollHeight; const btnUp = document.getElementById('btn-up'); // Mostrar botón si estás a 50px del final if (scrollTop + windowHeight >= docHeight - 50) { btnUp.style.display = 'block'; } else { btnUp.style.display = 'none'; } }); // Función para subir arriba al hacer clic document.getElementById('btn-up').addEventListener('click', function() { window.scrollTo({ top: 0, behavior: 'smooth' }); }); </script>