Skip to content

Spinning loading animation for Roblox by boredlakeyt

Details

Authorboredlakeyt

LicenseCC-BY-NC-SA-4.0

Categorywww.roblox.com

Created

Updated

Size698 B

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

Just makes the Roblox icon in the loader spin. Nothing too special.

Notes

Userstyle doesn't have notes.

Source code

/* ==UserStyle==
@name         Spinning loading animation for Roblox
@namespace    USO Archive
@author       CraX_e621
@description  Just makes the cheezit icon in the loader spin. Nothing too special.    A similar style I made: https://userstyles.org/styles/177168/spinning-icon-for-roblox
@version      20191112.10.25
@license      CC-BY-NC-SA-4.0
@preprocessor uso
==/UserStyle== */
@-moz-document domain("roblox.com") {
@keyframes wobble {
  0% {
    transform: rotate(0deg)
  }
  15% {
    transform: rotate(-30deg)
  }
  50% {
    transform: rotate(360deg)
  }
  100% {
    transform: rotate(360deg)
  }
}

.icon-logo-r-95,
.dark-theme .icon-logo-r-95 {
    animation: wobble 2s infinite;
}
}

Reviews

No reviews yet.