New mission: revamp the portals to make them look actually tolerable to the eye. They are currently placeholders as of now.
The Gold Network: Soyworld | SNCApedia | SoyPlace


I'm not dead, just inactive for the moment. Faggot (talk) 20:16, 9 April 2026 (UTC)

Template:2DSpinCube/style.css: Difference between revisions

From SNCApedia, the shit nobody cares about encyclopedia
Jump to navigationJump to search
No edit summary
No edit summary
Line 1: Line 1:
/* Template:2DSpinCube/style.css */
/* Template:2DSpinCube/style.css */
.scene {
.cube2d-scene {
    width: 200px;
width: 200px;
    height: 200px;
height: 200px;
    margin: 100px auto;
margin: 100px auto;
    position: relative;
position: relative;
}
}


.cube {
.cube2d-container {
    width: 100%;
width: 100%;
    height: 100%;
height: 100%;
    position: relative;
position: relative;
}
}


.cube-face {
.cube2d-face {
    position: absolute;
position: absolute;
    width: 200px;
width: 200px;
    height: 200px;
height: 200px;
    top: 0;
top: 0;
    left: 0;
left: 0;
    /* Animation applied to all faces */
/* No background/border so transparency works */
    animation: fake3D 8s linear infinite;
animation: cube2d-spin 8s linear infinite;
}
}


/* Offsetting faces for the horizontal spin */
.cube2d-front  { animation-delay: 0s; }
.face-front  { animation-delay: 0s; }
.cube2d-right  { animation-delay: -2s; }
.face-right  { animation-delay: -2s; }
.cube2d-back  { animation-delay: -4s; }
.face-back  { animation-delay: -4s; }
.cube2d-left  { animation-delay: -6s; }
.face-left  { animation-delay: -6s; }


/* Hide top/bottom since we are only doing horizontal spin */
/* Top and bottom are hidden because they don't work in this 2D projection */
.face-top, .face-bottom {
.cube2d-top, .cube2d-bottom { display: none; }
    display: none;
}


/* 16-step projection */
@keyframes cube2d-spin {
@keyframes fake3D {
0%      { transform: translateX(0px) scaleX(1); z-index: 4; }
    0%      { transform: translateX(0px) scaleX(1); z-index: 4; }
6.25%  { transform: translateX(38.3px) scaleX(0.924); z-index: 4; }
    12.5%  { transform: translateX(70.7px) scaleX(0.707); z-index: 4; }
12.5%  { transform: translateX(70.7px) scaleX(0.707); z-index: 4; }
    25%    { transform: translateX(100px) scaleX(0); z-index: 3; }
18.75%  { transform: translateX(92.4px) scaleX(0.383); z-index: 3; }
    37.5%  { transform: translateX(70.7px) scaleX(-0.707); z-index: 2; }
25%    { transform: translateX(100px) scaleX(0); z-index: 3; }
    50%    { transform: translateX(0px) scaleX(-1); z-index: 1; }
31.25%  { transform: translateX(92.4px) scaleX(-0.383); z-index: 2; }
    62.5%  { transform: translateX(-70.7px) scaleX(-0.707); z-index: 2; }
37.5%  { transform: translateX(70.7px) scaleX(-0.707); z-index: 2; }
    75%    { transform: translateX(-100px) scaleX(0); z-index: 3; }
43.75%  { transform: translateX(38.3px) scaleX(-0.924); z-index: 1; }
    87.5%  { transform: translateX(-70.7px) scaleX(0.707); z-index: 4; }
50%    { transform: translateX(0px) scaleX(-1); z-index: 1; }
    100%    { transform: translateX(0px) scaleX(1); z-index: 4; }
56.25%  { transform: translateX(-38.3px) scaleX(-0.924); z-index: 1; }
62.5%  { transform: translateX(-70.7px) scaleX(-0.707); z-index: 2; }
68.75%  { transform: translateX(-92.4px) scaleX(-0.383); z-index: 2; }
75%    { transform: translateX(-100px) scaleX(0); z-index: 3; }
81.25%  { transform: translateX(-92.4px) scaleX(0.383); z-index: 3; }
87.5%  { transform: translateX(-70.7px) scaleX(0.707); z-index: 4; }
93.75%  { transform: translateX(-38.3px) scaleX(0.924); z-index: 4; }
100%    { transform: translateX(0px) scaleX(1); z-index: 4; }
}
}

Revision as of 18:16, 11 April 2026

/* Template:2DSpinCube/style.css */
.cube2d-scene {
	width: 200px;
	height: 200px;
	margin: 100px auto;
	position: relative;
}

.cube2d-container {
	width: 100%;
	height: 100%;
	position: relative;
}

.cube2d-face {
	position: absolute;
	width: 200px;
	height: 200px;
	top: 0;
	left: 0;
	/* No background/border so transparency works */
	animation: cube2d-spin 8s linear infinite;
}

.cube2d-front  { animation-delay: 0s; }
.cube2d-right  { animation-delay: -2s; }
.cube2d-back   { animation-delay: -4s; }
.cube2d-left   { animation-delay: -6s; }

/* Top and bottom are hidden because they don't work in this 2D projection */
.cube2d-top, .cube2d-bottom { display: none; }

@keyframes cube2d-spin {
	0%      { transform: translateX(0px) scaleX(1); z-index: 4; }
	6.25%   { transform: translateX(38.3px) scaleX(0.924); z-index: 4; }
	12.5%   { transform: translateX(70.7px) scaleX(0.707); z-index: 4; }
	18.75%  { transform: translateX(92.4px) scaleX(0.383); z-index: 3; }
	25%     { transform: translateX(100px) scaleX(0); z-index: 3; }
	31.25%  { transform: translateX(92.4px) scaleX(-0.383); z-index: 2; }
	37.5%   { transform: translateX(70.7px) scaleX(-0.707); z-index: 2; }
	43.75%  { transform: translateX(38.3px) scaleX(-0.924); z-index: 1; }
	50%     { transform: translateX(0px) scaleX(-1); z-index: 1; }
	56.25%  { transform: translateX(-38.3px) scaleX(-0.924); z-index: 1; }
	62.5%   { transform: translateX(-70.7px) scaleX(-0.707); z-index: 2; }
	68.75%  { transform: translateX(-92.4px) scaleX(-0.383); z-index: 2; }
	75%     { transform: translateX(-100px) scaleX(0); z-index: 3; }
	81.25%  { transform: translateX(-92.4px) scaleX(0.383); z-index: 3; }
	87.5%   { transform: translateX(-70.7px) scaleX(0.707); z-index: 4; }
	93.75%  { transform: translateX(-38.3px) scaleX(0.924); z-index: 4; }
	100%    { transform: translateX(0px) scaleX(1); z-index: 4; }
}