MINETUX | Custom Features | 1.11, 1.11.2, 1.12 | Amazing Community

Status
This thread has been locked.

itslyn

Website Designer
Premium
Feedback score
14
Posts
288
Reactions
180
Resources
0
PNfK1AG.png

Launching Season Two!


We have finally released season two of Minetux Factions! We have a bunch of new features along with season two which are listed below. I hope you enjoy playing on Minetux season 2!

+ 1.8 PvP
+ Custom Nether and Terrain
+ New Custom Spawn
+ Head Drops
+ Tree Feller
+ New Balanced Economy
+ Top Voter Rewards
+ Spawner Shop
+ Trained Staff Team


Our new maps:
3f2311023a.png

PNfK1AG.png

Information:

We are hiring all types of staff! If you wish to apply for Helper, Developer, Builder and more click this!

IP: mc.minetux.com
Store link: http://minetux.com/store/
Voting link: http://www.minetux.com/threads/voting-links.166
Staff team: http://www.minetux.com/XenStaff/


Thank you for playing on Minetux! Enjoy Season 2.
 
Last edited:
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

Vilsike

Previous owner of OasisMC, SimpPixel, and others!
Supreme
Feedback score
4
Posts
461
Reactions
146
Resources
0
Really enjoyed how the website loads.

I'm actually wanting to ask how you did that honestly, lmao.
 

itslyn

Website Designer
Premium
Feedback score
14
Posts
288
Reactions
180
Resources
0
Really enjoyed how the website loads.

I'm actually wanting to ask how you did that honestly, lmao.

It's quite simple, really. I just used some easy webkit css transitions on a couple of the site elements.
To make the entire site fade in, I did this:
HTML:
body {
    -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 2s; /* Firefox < 16 */
        -ms-animation: fadein 2s; /* Internet Explorer */
         -o-animation: fadein 2s; /* Opera < 12.1 */
            animation: fadein 2s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
 
Status
This thread has been locked.
Top