Jump to content
UBot Underground

Circular progress indacator works with pro


Recommended Posts

 It just sets the variable when the job is started and when its finished just sets it to nothing.

Just stick the var anywhere you like.

 

Works great on pro. Its all set up just copy and paste into ubot the run the set var.

 

http://cssdeck.com

 

 

ui stat monitor("<style type=\"text/css\">   
/* Circle */
.circle \{
    background-color: rgba(0,0,0,0);
    border:5px solid rgba(0,183,229,0.9);
    opacity:.9;
    border-right:5px solid rgba(0,0,0,0);
    border-left:5px solid rgba(0,0,0,0);
    border-radius:50px;
    box-shadow: 0 0 35px #2187e7;
    width:50px;
    height:50px;
    margin:0 auto;
    -moz-animation:spinPulse 1s infinite ease-in-out;
    -webkit-animation:spinPulse 1s infinite linear;
\}
.circle1 \{
    background-color: rgba(0,0,0,0);
    border:5px solid rgba(0,183,229,0.9);
    opacity:.9;
    border-left:5px solid rgba(0,0,0,0);
    border-right:5px solid rgba(0,0,0,0);
    border-radius:50px;
    box-shadow: 0 0 15px #2187e7;
    width:30px;
    height:30px;
    margin:0 auto;
    position:relative;
    top:-50px;
    -moz-animation:spinoffPulse 1s infinite linear;
    -webkit-animation:spinoffPulse 1s infinite linear;
\}
@-moz-keyframes spinPulse \{
    0% \{ -moz-transform:rotate(160deg); opacity:0; box-shadow:0 0 1px #2187e7;\}
    50% \{ -moz-transform:rotate(145deg); opacity:1; \}
    100% \{ -moz-transform:rotate(-320deg); opacity:0; \}
\}
@-moz-keyframes spinoffPulse \{
    0% \{ -moz-transform:rotate(0deg); \}
    100% \{ -moz-transform:rotate(360deg);  \}
\}
@-webkit-keyframes spinPulse \{
    0% \{ -webkit-transform:rotate(160deg); opacity:0; box-shadow:0 0 1px #2187e7; \}
    50% \{ -webkit-transform:rotate(145deg); opacity:1;\}
    100% \{ -webkit-transform:rotate(-320deg); opacity:0; \}
\}
@-webkit-keyframes spinoffPulse \{
    0% \{ -webkit-transform:rotate(0deg); \}
    100% \{ -webkit-transform:rotate(360deg); \}
\}
</style>", "")
ui stat monitor(#mine, "")
set(#mine, $nothing, "Global")
set(#mine, "<div class=\"content\">
    <div class=\"circle\"></div>
    <div class=\"circle1\"></div>
</div>
", "Global")
 

  • Like 2
Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...