Extra animation for Ronimation!
[!!] Ronimation Plugin by MRCREEPRO11
Details
AuthorMRCREEPRO11
LicenseMRCREEP Licenses
Categoryroblox.com
Created
Updated
Size4.7 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
- Add scroll animation
- Works with Robloxify, Ronimation!
Source code
/* ==UserStyle==
@name [!!] Ronimation Plugin
@namespace github.com/openstyles/stylus4
@version 1.1.0
@description A new userstyle
@author MRCREEP
==/UserStyle== */
@-moz-document domain("roblox.com") {
/* General reset */
* {
/* General reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
transition: all 0.3s ease;
}
body {
font-family: 'Arial', sans-serif;
background-color: #0a0a20;
color: white;
overflow-x: hidden;
min-height: 100vh;
}
/* Navbar styling */
.navbar {
background-color: rgba(10, 10, 32, 0.9);
backdrop-filter: blur(10px);
padding: 10px 20px;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
.navbar .logo {
font-size: 1.5rem;
font-weight: bold;
}
.navbar .nav-links a {
color: #fff;
margin-left: 20px;
text-decoration: none;
font-size: 1rem;
transition: color 0.3s ease;
}
.navbar .nav-links a:hover {
color: #ff6666;
}
/* Main window */
.main-window {
background-color: rgba(20, 20, 50, 0.8);
backdrop-filter: blur(20px);
width: 600px;
padding: 20px;
margin: 100px auto 0;
border-radius: 15px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
animation: fadeIn 1s ease-in-out;
}
.main-window:hover {
transform: scale(1.05);
opacity: 0.95;
}
.main-window h1 {
color: #ffcc00;
margin-bottom: 20px;
font-size: 2rem;
animation: glow 2s infinite;
}
.main-window p {
color: #cccccc;
line-height: 1.5;
font-size: 1.1rem;
}
/* Button with improved hover effects */
.main-window .play-btn {
background-color: #008CFF; /* Blue button */
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 8px;
font-size: 1.2rem;
cursor: pointer;
position: relative;
overflow: hidden;
transition: transform 0.3s ease, background-color 0.3s ease;
}
.main-window .play-btn:hover {
background-color: #006bbf; /* Darker blue on hover */
transform: scale(1.1);
animation: float 2s ease-in-out infinite;
}
/* Floating animation for buttons */
@keyframes float {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-10px);
}
}
/* Cards with advanced hover animation */
.card {
background-color: #121228;
width: 250px;
height: 300px;
border-radius: 10px;
overflow: hidden;
margin: 20px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
transform: scale(1.1) rotate(2deg);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
background-color: #1a1a40;
}
/* Parallax effect on background */
body {
background-image: url('background-image.jpg');
background-size: cover;
background-attachment: fixed;
animation: parallaxScroll 10s infinite linear;
}
@keyframes parallaxScroll {
0% { background-position: 0 0; }
100% { background-position: 0 100%; }
}
/* Glow effect for headings */
@keyframes glow {
0% { text-shadow: 0 0 10px #ffcc00; }
50% { text-shadow: 0 0 30px #ffcc00; }
100% { text-shadow: 0 0 10px #ffcc00; }
}
/* Smooth fade-in animation */
@keyframes fadeIn {
from {
transform: scale(0.98);
opacity: 0;
}
to {
transform: none;
opacity: 1;
}
}
/* Modal window animations */
.modal {
opacity: 0;
visibility: hidden;
transform: scale(0.9);
transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
}
.modal.active {
opacity: 1;
visibility: visible;
transform: scale(1);
}
.modal-overlay {
background-color: rgba(0, 0, 0, 0.6);
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
opacity: 0;
visibility: hidden;
transition: opacity 0.5s ease, visibility 0.5s;
}
.modal-overlay.active {
opacity: 1;
visibility: visible;
}
/* XP progress bar */
.xp-bar {
height: 10px;
width: 100%;
background-color: #333;
border-radius: 5px;
overflow: hidden;
margin-top: 20px;
}
.xp-bar .progress {
height: 100%;
width: 50%; /* Simulated XP progress */
background-color: #008CFF;
border-radius: 5px;
transition: width 1s ease;
}
/* Scrollbar customization */
body::-webkit-scrollbar {
width: 12px;
}
body::-webkit-scrollbar-thumb {
background-color: rgba(100, 100, 100, 0.5);
border-radius: 10px;
}
}
}