Advertisement
Guest User

fivem loadscreen

a guest
Mar 9th, 2022
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1. __resource page:
  2. files {
  3. 'index.html',
  4. 'musica.mp3'
  5. }
  6. loadscreen 'index.html'
  7.  
  8. html page:
  9.  
  10. <!DOCTYPE html>
  11. <html lang="it">
  12. <head>
  13. <link href="http://fonts.googleapis.com/css?family=Raleway:100,200,300,400,500,600,700,800,900%7CDosis:200,300,400,500,600,700,800%7COswald:300,400,700%7CMontserrat:400,700" rel="stylesheet" type="text/css">
  14. <meta charset="UTF-8">
  15. <title>IMPERIUM</title>
  16. <!--
  17. <script
  18. src="https://code.jquery.com/jquery-3.3.1.min.js"
  19. integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
  20. crossorigin="anonymous">
  21. </script>
  22. -->
  23. </head>
  24. <style>
  25. body, html {
  26. height: 100%;
  27. margin: 0;
  28. }
  29. .PaginaSfondo
  30. {
  31. background-image: url('https://wallpapercave.com/wp/wp8012910.jpg');
  32.  
  33. /* Full height */
  34. height: 100%;
  35.  
  36. /* Center and scale the image nicely */
  37. background-position: center;
  38. background-repeat: no-repeat;
  39. background-size: cover;
  40. }
  41. .PaginaCentrale {
  42. background-image: url('https://img.gta5-mods.com/q95/images/vanilla-unicorn-exterior-fivem-ymap-yepeezfive/94fa15-2eme.jpg');
  43. background-position: center;
  44. background-size: cover;
  45. background-repeat: no-repeat;
  46. margin-left: 12.5%;
  47. top: 12.5%;
  48. position: fixed;
  49. width: 1366px;
  50. height: 768px;
  51. color: #740F0F;
  52. border-radius: 25px;
  53. }
  54. </style>
  55.  
  56. <body>
  57. <div class="PaginaSfondo">
  58. <div class="PaginaCentrale">
  59. dio vaffanculo aaaaaa
  60. <audio autoplay="autoplay" volume="0.15" controls="controls">
  61. <source src="musica.mp3" />
  62. </audio>
  63. </div>
  64. </div>
  65. </body>
  66.  
  67. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement