css实现文字三维空间变换动画效果代码
代码语言:html
所属分类:动画
代码描述:css实现文字三维空间变换动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <link rel='stylesheet' href='https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@100&display=swap'> <style> body { background: #BF3979; height: 100vh; overflow: hidden; display: flex; font-family: "Roboto Mono", monospace; font-size: 1.5rem; justify-content: center; align-items: center; perspective: 600px; color: #fff; } div { transform-style: preserve-3d; } .camera.-y { -webkit-animation: rotateY 20000ms linear infinite; animation: rotateY 20000ms linear infinite; } .camera.-z { -webkit-animation: rotateZ 15000ms infinite alternate; animation: rotateZ 15000ms infinite alternate; } .move { -webkit-animation: move 12000ms infinite alternate; animation: move 12000ms infinite alternate; } .star:nth-child(1) { transform: translate3d(5.5px, 327.5px, -202.25px) rotateY(111deg); } .star:nth-child(1)::before { content: "L"; position: absolute; -webkit-animation: code 1278ms -1395ms infinite; animation: code 1278ms -1395ms infinite; } .star:nth-child(2) { transform: translate3d(-20.5px, 82.25px, 190px) rotateY(259deg); } .star:nth-child(2)::before { content: "L"; position: absolute; -webkit-animation: code 1661ms -982ms infinite; animation: code 1661ms -982ms infinite; } .star:nth-child(3) { transform: translate3d(69px, 35.25px, 48px) rotateY(21deg); } .star:nth-child(3)::before { content: "L"; position: absolute; -webkit-animation: code 1760ms -1588ms infinite; animation: code 1760ms -1588ms infinite; } .star:nth-child(4) { transform: translate3d(-167px, 63.75px, -89.5px) rotateY(50deg); } .star:nth-child(4)::before { content: "L"; position: absolute; -webkit-animation: code 1459ms -1707ms infinite; animation: code 1459ms -1707ms infinite; } .star:nth-child(5) { transform: translate3d(-93px, -94.5px, -171.25px) rotateY(249deg); } .star:nth-child(5)::before { content: "L"; position: absolute; -webkit-animation: code 1181ms -675ms infinite; animation: code 1181ms -675ms infinite; } .star:nth-child(6) { transform: translate3d(228.75px, -141.5px, 151.25px) rotateY(353deg); } .star:nth-child(6)::before { content: "L"; position: absolute; -webkit-animation: code 1611ms -36ms infinite; animation: code 1611ms -36ms infinite; } .star:nth-child(7) { transform: translate3d(-353.75px, 53.25px, 11px) rotateY(56deg); } .star:nth-child(7)::before { content: "L"; position: absolute; -webkit-animation: code 1289ms -1769ms infinite; animation: code 1289ms -1769ms infinite; } .star:nth-child(8) { transform: translate3d(-34px, 209.75px, 87px) rotateY(317deg); } .star:nth-child(8)::before { content: "L"; position: absolute; -webkit-animation: code 1188ms -1812ms infinite; animation: code 1188ms -1812ms infinite; } .star:nth-child(9) { transform: translate3d(-281.75px, -50.75px, -42.5px) rotateY(348deg); } .star:nth-child(9)::before { content: "L"; position: absolute; -webkit-animation: code 1521ms -1738ms infinite; animation: code 1521ms -1738ms infinite; } .star:nth-child(10) { transform: translate3d(-209.5px, 103.75px, -268.5px) rotateY(358deg); } .star:nth-child(10)::before { content: "L"; position: absolute; -webkit-animation: code 1859ms -1178ms infinite; animation: code 1859ms -1178ms infinite; } .star:nth-child(11) { transform: translate3d(-87.75px, -111.75px, 63.5px) rotateY(107deg); } .star:nth-child(11)::before { content: "L"; position: absolute; -webkit-animation: code 1301ms -1517ms infinite; animation: code 1301ms -1517ms infinite; } .star:nth-child(12) { transform: translate3d(-65.25px, 173.75px, -2px) rotateY(59deg); } .star:nth-child(12)::before { content: "L"; position: absolute; -webkit-animation: code 1176ms -1293ms infinite; animation: code 1176ms -1293ms infinite; } .star:nth-child(13) { transform: translate3d(51.25px, -12.25px, -172.5px) rotateY(290deg); } .star:nth-child(13)::before { content: "L"; position: absolute; -webkit-animation: code 1317ms -1999ms infinite; animation: code 1317ms -1999ms infinite; } .star:nth-child(14) { transform: translate3d(-21.25px, 49px, 48.75px) rotateY(340deg); } .star:nth-child(14)::before { content: "L"; position: absolute; -webkit-animation: code 1535ms -1061ms infinite; animation: code 1535ms -1061ms infinite; } .star:nth-child(15) { transform: translate3d(259.5px, -141.25px, 149px) rotateY(291deg); } .star:nth-child(15)::before { content: "L"; position: absolute; -webkit-animation: code 1944ms -1482ms infinite; animation: code 1944ms -1482ms infinite; } .star:nth-child(16) { transform: translate3d(49px, 188px, -36.5px) rotateY(354deg); } .star:nth-child(16)::before { content: "L"; position: absolute; -webkit-animation: code 1561ms -874ms infinite; animation: code 1561ms -874ms infinite; } .star:nth-child(17) { transform: translate3d(-121.75px, 132.75px, -161.25px) rotateY(60deg); } .star:nth-child(17)::before { content: "L"; position: absolute; -webkit-animation: code 1934ms -1557ms infinite; animation: code 1934ms -1557ms infinite; } .star:nth-child(18) { transform: translate3d(147.75px, 94.75px, 119.5px) rotateY(148deg); } .star:nth-child(18)::before { content: "L"; position: absolute; -webkit-animation: code 1232ms -1559ms infinite; animation: code 1232ms -1559ms infinite; } .star:nth-child(19) { transform: translate3d(-81px, -57.5px, -18.75px) rotateY(11deg); } .star:nth-child(19)::before { content: "L"; position: absolute; -webkit-animation: code 1151ms -1707ms infinite; animation: code 1151ms -1707ms infinite; } .star:nth-child(20) { transform: translate3d(-263.25px, 8.75px, -94.5px) rotateY(138deg); } .star:nth-child(20)::before { content: "L"; position: absolute; -webkit-animation: code 1458ms -1358ms infinite; animation: code 1458ms -1358ms infinite; } .star:nth-child(21) { transform: translate3d(-115px, -0.75px, -204.75px) rotateY(54deg); } .star:nth-child(21)::before { content: "L"; position: absolute; -webkit-animation: code 1132ms -421ms infinite; animation: code 1132ms -421ms infinite; } .star:nth-child(22) { transform: translate3d(124px, -260px, -142px) rotateY(15deg); } .star:nth-child(22)::before { content: "L"; position: absolute; -webkit-animation: code 1651ms -720ms infinite; animation: code 1651ms -720ms infinite; } .star:nth-child(23) { transform: translate3d(18.5px, -76.25px, -92.5px) rotateY(46deg); } .star:nth-child(23)::before { content: "L"; position: absolute; -webkit-animation: code 1047ms -151ms infinite; animation: code 1047ms -151ms infinite; } .star:nth-child(24) { transform: translate3d(-230.25px, 154px, 27px) rotateY(226deg); } .star:nth-child(24)::before { content: "L"; position: absolute; -webkit-animation: code 1873ms -1565ms infinite; animation: code 1873ms -1565ms infinite; } .star:nth-child(25) { transform: translate3d(212.25px, -139.5px, 16.5px) rotateY(285deg); } .star:nth-child(25)::before { content: "L"; position: absolute; -webkit-animation: code 1097ms -949ms infinite; animation: code 1097ms -949ms infinite; } .star:nth-child(26) { transform: translate3d(-115.75px, -28.5px, 2px) rotateY(47deg); } .star:nth-child(26)::before { content: "L"; position: absolute; -webkit-animation: code 1293ms -1002ms infinite; animation: code 1293ms -1002ms infinite; } .star:nth-child(27) { transform: translate3d(-176.25px, -88.75px, 54.25px) rotateY(256deg); } .star:nth-child(27)::before { content: "L"; position: absolute; -webkit-animation: code 1947ms -762ms infinite; animation: code 1947ms -762ms infinite; } .star:nth-child(28) { transform: translate3d(26.25px, -26.5px, -204.5px) rotateY(123deg); } .star:nth-child(28)::before { content: "L"; position: absolute; -webkit-animation: code 1048ms -773ms infinite; animation: code 1048ms -773ms infinite; } .star:nth-child(29) { transform: translate3d(101px, -33px, -172.75px) rotateY(99deg); } .star:nth-child(29)::before { content: "L"; position: absolute; -webkit-animation: code 1156ms -1277ms infinite; animation: code 1156ms -1277ms infinite; } .star:nth-child(30) { transform: translate3d(159px, -179px, -20.5px) rotateY(91deg); } .star:nth-child(30)::before { content: "L"; position: absolute; -webkit-animation: code 1135ms -1392ms infinite; animation: code 1135ms -1392ms infinite; } .star:nth-child(31) { transform: translate3d(-236.25px, -255.5px, 114.5px) rotateY(46deg); } .star:nth-child(31)::before { content: "L"; position: absolute; -webkit-animation: code 1071ms -1342ms infinite; animation: code 1071ms -1342ms infinite; } .star:nth-child(32) { transform: translate3d(77.25px, -58.25px, -353px) rotateY(19deg); } .star:nth-child(32)::before { content: "L"; position: absolute; -webkit-animation: code 1317ms -1424ms infinite; animation: code 1317ms -1424ms infinite; } .star:nth-child(33) { transform: translate3d(57.5px, -72.75px, 64.25px) rotateY(148deg); } .star:nth-child(33)::before { content: "L"; position: absolute; -webkit-animation: code 1748ms -862ms infinite; animation: code 1748ms -862ms infinite; } .star:nth-child(34) { transform: translate3d(53px, 60.25px, -70.25px) rotateY(121deg); } .star:nth-child(34)::before { content: "L"; position: absolute; -webkit-animation: code 1291ms -1595ms infinite; animation: code 1291ms -1595ms infinite; } .star:nth-child(35) { transform: translate3d(111px, 134.5px, 14.25px) rotateY(137deg); } .star:nth-child(35)::before { content: "L"; position: absolute; -webkit-animation: code 1827ms -1884ms infinite; animation: code 1827ms -1884ms infinite; } .star:nth-child(36) { transform: translate3d(-352.75px, 100px, -189.75px) rotateY(179deg); } .star:nth-child(36)::before { content: "L"; position: absolute; -webkit-animation: code 1362ms -47ms infinite; animation: code 1362ms -47ms infinite; } .star:nth-child(37) { transform: translate3d(20px, 143.75px, 97.75px) rotateY(76deg); } .star:nth-child(37)::before { content: "L"; position: absolute; -webkit-animation: code 1323ms -1888ms infinite; animation: code 1323ms -1888ms infinite; } .star:nth-child(38) { transform: translate3d(87.25px, -145.75px, 116.5px) rotateY(106deg); } .star:nth-child(38)::before { content: "L"; position: absolute; -webkit-animation: code 1338ms -1428ms infinite; animation: code 1338ms -1428ms infinite; } .star:nth-child(39) { transform: translate3d(-226.25px, -195.25px, -149.25px) rotateY(250deg); } .star:nth-child(39)::before { content: "L"; position: absolute; -webkit-animation: code 1666ms -251ms infinite; animation: code 1666ms -251ms infinite; } .star:nth-child(40) { transform: translate3d(-11.75px, -24.5px, -150px) rotateY(123deg); } .star:nth-child(40)::before { content: "L"; position: absolute; -webkit-animation: code 1847ms -1699ms infinite; animation: code 1847ms -1699ms infinite; } .star:nth-child(41) { transform: translate3d(162px, 65px, -87.25px) rotateY(229deg); } .star:nth-child(41)::before { content: "L"; position: absolute; -webkit-animation: code 1079ms -905ms infinite; animation: code 1079ms -905ms infinite; } .star:nth-child(42) { transform: translate3d(-20px, 132.25px, -50px) rotateY(89deg); } .star:nth-child(42)::before { content: "L"; position: absolute; -webkit-animation: code 1847ms -266ms infinite; animation: code 1847ms -266ms infinite; } .star:nth-child(43) { transform: translate3d(-31.75px, 147.75px, -28.5px) rotateY(236deg); } .star:nth-child(43)::before { content: "L"; position: absolute; -webkit-animation: code 1487ms -1868ms infinite; animation: code 1487ms -1868ms infinite; } .star:nth-child(44) { transform: translate3d(-56px, -105.75px, 218px) rotateY(217deg); } .star:nth-child(44)::before { content: "L"; position: absolute; -webkit-animation: code 1314ms -1969ms infinite; animation: code 1314ms -1969ms infinite; } .star:nth-child(45) { transform: translate3d(109.25px, -12.25px, 125.25px) rotateY(243deg); } .star:nth-child(45)::before { content: "L"; position: absolute; -webkit-animation: code 1062ms -229ms infinite; animation: code 1062ms -229ms infinite; } .star:nth-child(46) { transform: translate3d(154px, 218px, -114px) rotateY(298deg); } .star:nth-child(46)::before { content: "L"; position: absolute; -webkit-animation: code 1196ms -1357ms infinite; animation: code 1196ms -1357ms infinite; } .star:nth-child(47) { transform: translate3d(-40px, 6.25px, -158.25px) rotateY(200deg); } .star:nth-child(47)::before { content: "L"; position: absolute; -webkit-animation: code 1919ms -269ms infinite; animation: code 1919ms -269ms infinite; } .star:nth-child(48) { transform: translate3d(32.5px, 166px, 36.5px) rotateY(161deg); } .star:nth-child(48)::before { content: "L"; position: absolute; -webkit-animation: code 1897ms -663ms infinite; animation: code 1897ms -663ms infinite; } .star:nth-child(49) { transform: translate3d(134.25px, -189.5px, 216.25px) rotateY(317deg); } .star:nth-child(49)::before { content: "L"; position: absolute; -webkit-animation: code 1126ms -1436ms infinite; animation: code 1126ms -1436ms infinite; } .star:nth-child(50) { transform: translate3d(131.75px, 31.5px, 128px) rotateY(64deg); } .star:nth-child(50)::before { content: "L"; position: absolute; -webkit-animation: code 1035ms -1107ms infinite; animation: code 1035ms -1107ms infinite; } .star:nth-child(51) { transform: translate3d(-134.75px, 9.25px, -274px) rotateY(42deg); } .star:nth-child(51)::before { content: "L"; position: absolute; -webkit-animation: code 1265ms -627ms infinite; animation: code 1265ms -627ms infinite; } .star:nth-child(52) { transform: translate3d(183.25px, -295.75px, 47px) rotateY(305deg); } .star:nth-child(52)::before { content: "L"; position: absolute; -webkit-animation: code 1661ms -1818ms infinite; animation: code 1661ms -1818ms infinite; } .star:nth-child(53) { transform: translate3d(-19.25px, 98.75px, 79.5px) rotateY(275deg); } .star:nth-child(53)::before { content: "L"; position: absolute; -webkit-animation: code 1447ms -50ms infinite; animation: code 1447ms -50ms infinite; } .star:nth-child(54) { transform: translate3d(-39.5px, -82.5px, -107.5px) rotateY(289deg); } .star:nth-child(54)::before { content: "L"; position: absolute; -webkit-animation: code 1770ms -1936ms infinite; animation: code 1770ms -1936ms infinite; } .star:nth-child(55) { transform: translate3d(-172px, 13.5px, 86.5px) rotateY(135deg); } .star:nth-child(55)::before { content: "L"; position: absolute; -webkit-animation: code 1760ms -1074ms infinite; animation: code 1760ms -1074ms infinite; } .star:nth-child(56) { transform: translate3d(136.5px, 90.75px, -183px) rotateY(250deg); } .star:nth-child(56)::before { content: "L"; position: absolute; -webkit-animation: code 1156ms -495ms infinite; animation: code 1156ms -495ms infinite; } .star:nth-child(57) { transform: translate3d(-40.25px, -51.5px, 11.5px) rotateY(292deg); } .star:nth-child(57)::before { content: "L"; position: absolute; -webkit-animation: code 1464ms -217ms infinite; animation: code 1464ms -217ms infinite; } .star:nth-child(58) { transform: translate3d(-121px, -281px, -112.75px) rotateY(253deg); } .star:nth-child(58)::before { content: "L"; position: absolute; -webkit-animation: code 1936ms -1353ms infinite; animation: code 1936ms -1353ms infinite; } .star:nth-child(59) { transform: translate3d(-176.25px, 47px, 187.5px) rotateY(51deg); } .star:nth-child(59)::before { content: "L"; position: absolute; -webkit-animation: code 1144ms -418ms infinite; animation: code 1144ms -418ms infinite; } .star:nth-child(60) { transform: translate3d(41.25px, 51px, 178.75px) rotateY(65deg); } .star:nth-child(60)::before { content: "L"; position: absolute; -webkit-animation: code 1109ms -450ms infinite; animation: code 1109ms -450ms infinite; } .star:nth-child(61) { transform: translate3d(-103.5px, 155.5px, -12.75px) rotateY(237deg); } .star:nth-child(61)::before { content: "L"; position: absolute; -webkit-animation: code 1222ms -971ms infinite; animation: code 1222ms -971ms infinite; } .star:nth-child(62) { transform: translate3d(50.25px, -49px, 125.25px) rotateY(138deg); } .star:nth-child(62)::before { content: "L"; position: absolute; -webkit-animation: code 1587ms -216ms infinite; animation: code 1587ms -216ms infinite; } .star:nth-child(63) { transform: translate3d(-105.75px, -34.25px, 171.75px) rotateY(117deg); } .star:nth-child(63)::before { content: "L"; position: absolute; -webkit-animation: code 1144ms -1546ms infinite; animation: code 1144ms -1546ms infinite; } .star:nth-child(64) { transform: translate3d(-81.25px, -168.75px, -93.75px) rotateY(18deg); } .star:nth-child(64)::before { content: "L"; position: absolute; -webkit-animation: code 1398ms -543ms infinite; animation: code 1398ms -543ms infinite; } .star:nth-child(65) { transform: translate3d(-85.75px, -85.75px, 46px) rotateY(291deg); } .star:nth-child(65)::before { content: "L"; position: absolute; -webkit-animation: code 1464ms -947ms infinite; animation: code 1464ms -947ms infinite; } .star:nth-child(66) { transform: translate3d(-38px, -6.75px, -102.75px) rotateY(67deg); } .star:nth-child(66)::before { content: "L"; position: absolute; -webkit-animation: code 1681ms -876ms infinite; animation: code 1681ms -876ms infinite; } .star:nth-child(67) { transform: translate3d(271px, 34.5px, -117px) rotateY(192deg); } .star:nth-child(67)::before { content: "L"; position: absolute; -webkit-animation: code 1309ms -312ms infinite; animation: code 1309ms -312ms infinite; } .star:nth-child(68) { transform: translate3d(165.25px, -184.75px, 223.25px) rotateY(90deg); } .star:nth-child(68)::before { content: "L"; position: absolute; -webkit-animation: code 1986ms -1308ms infinite; animation: code 1986ms -1308ms infinite; } .star:nth-child(69) { transform: translate3d(44.75px, 119.25px, -4.75px) rotateY(160deg); } .star:nth-child(69)::before { content: "L"; position: absolute; -webkit-animation: code 1193ms -1203ms infinite; animation: code 1193ms -1203ms infinite; } .star:nth-child(70) { transform: translate3d(122.75px, 65.75px, -0.75px) rotateY(94deg); } .star:nth-child(70)::before { content: "L"; position: absolute; -webkit-animation: code 1117ms -1297ms infinite; animation: code 1117ms -1297ms infinite; } .star:nth-child(71) { transform: translate3d(-286px, 16.25px, -78px) rotateY(223deg); } .star:nth-child(71)::before { content: "L"; position: absolute; -webkit-animation: code 1031ms -1390ms infinite; animation: code 1031ms -1390ms infinite; } .star:nth-child(72) { transform: translate3d(18.25px, -107px, 59.5px) rotateY(136deg); } .star:nth-child(72)::before { content: "L"; position: absolute; -webkit-animation: code 1129ms -328ms infinite; animation: code 1129ms -328ms infinite; } .star:nth-child(73) { transform: translate3d(227.75px, 3.25px, -62.25px) rotateY(11deg); } .star:nth-child(73)::before { content: "L"; position: absolute; -webkit-animation: code 1097ms -765ms infinite; animation: code 1097ms -765ms infinite; } .star:nth-child(74) { transform: translate3d(20px, 98px, 57px) rotateY(230deg); } .star:nth-child(74)::before { content: "L"; position: absolute; -webkit-animation: code 1279ms -1534ms infinite; animation: code 1279ms -1534ms infinite; } .star:nth-child(75) { transform: translate3d(28.75px, 205.5px, 337px) rotateY(309deg); } .star:nth-child(75)::before { content: "L"; position: absolute; -webkit-animation: code 1823ms -1479ms infinite; animation: code 1823ms -1479ms infinite; } .star:nth-child(76) { transform: translate3d(-257.75px, -186.25px, 251.75px) rotateY(322deg); } .star:nth-child(76)::before { content: "L"; position: absolute; -webkit-animation: code 1886ms -525ms infinite; animation: code 1886ms -525ms infinite; } .star:nth-child(77) { transform: translate3d(-97px, -115.25px, -106.75px) rotateY(246deg); } .star:nth-child(77)::before { content: "L"; position: absolute; -webkit-animation: code 1639ms -1655ms infinite; animation: code 1639ms -1655ms infinite; } .star:nth-child(78) { transform: translate3d(-62.75px, -5.25px, 26.5px) rotateY(181deg); } .star:nth-child(78)::before { content: "L"; position: absolute; -webkit-animation: code 1626ms -1312ms infinite; animation: code 1626ms -1312ms infinite; } .star:nth-child(79) { transform: translate3d(-64.25px, 46px, -41.5px) rotateY(55deg); } .star:nth-child(79)::before { content: "L"; position: absolute; -webkit-animation: code 1042ms -576ms infinite; animation: code 1042ms -576ms infinite; } .star:nth-child(80) { transform: translate3d(-159.75px, -56.5px, 206.25px) rotateY(27deg); } .star:nth-child(80)::before { content: "L"; position: absolute; -webkit-animation: code 1449ms -1917ms infinite; animation: code 1449ms -1917ms infinite; } .star:nth-child(81) { transform: translate3d(-127.25px, 22px, -69.5px) rotateY(263deg); } .star:nth-child(81)::before { content: "L"; position: absolute; -webkit-animation: code 1236ms -1603ms infinite; animation: code 1236ms -1603ms infinite; } .star:nth-child(82) { transform: translate3d(38.25px, -216px, 132.5px) rotateY(295deg); } .star:nth-child(82)::before { content: "L"; position: absolute; -webkit-animation: code 1718ms -1936ms infinite; animation: code 1718ms -1936ms infinite; } .star:nth-child(83) { transform: translate3d(50.75px, 67px, -231.5px) rotateY(37deg); } .star:nth-child(83)::before { content: "L"; position: absolute; -webkit-animation: code 1610ms -808ms infinite; animation: code 1610ms -808ms infinite; } .star:nth-child(84) { transform: translate3d(-195.25px, 156.5px, 109.25px) rotateY(321deg); } .star:nth-child(84)::before { content: "L"; position: absolute; -webkit-animation: code 1057ms -484ms infinite; animation: code 1057ms -484ms infinite; } .star:nth-child(85) { transform: translate3d(44.75px, -8.5px, -17.5px) rotateY(322deg); } .star:nth-child(85)::before { content: "L"; position: absolute; -webkit-animation: code 1639ms -118ms infinite; animation: code 1639ms -118ms infinite; } .star:nth-child(86) { transform: translate3d(9.5px, 105.5px, 137.75px) rotateY(228deg); } .star:nth-child(86)::before { content: "L"; position: absolute; -webkit-animation: code 1587ms -1357ms infinite; animation: code 1587ms -1357ms infinite; } .star:nth-child(87) { transform: translate3d(-80.75px, 115px, 4.25px) rotateY(99deg); } .star:nth-child(87)::before { content: "L"; position: absolute; -webkit-animation: code 1189ms -1106ms infinite; animation: code 1189ms -1106ms infinite; } .star:nth-child(88) { transform: translate3d(289px, -203.5px, 52.5px) rotateY(171deg); } .star:nth-child(88)::before { content: "L"; position: absolute; -webkit-animation: code 1831ms -1118ms infinite; animation: code 1831ms -1118ms infinite; } .star:nth-child(89) { transform: translate3d(-219px, 137.5px, 124.25px) rotateY(16deg); } .star:nth-child(89)::before { content: "L"; position: absolute; -webkit-animation: code 1212ms -1150ms infinite; animation: code 1212ms -1150ms infinite; } .star:nth-child(90) { transform: translate3d(-29.75px, 195.75px, 223.25px) rotateY(300deg); } .star:nth-child(90)::before { content: "L"; position: absolute; -webkit-animation: code 1377ms -1620ms infinite; animation: code 1377ms -1620ms infinite; } .star:nth-child(91) { transform: translate3d(38.25px, 15px, 345.25px) rotateY(320deg); } .star:nth-child(91)::before { content: "L"; position: absolute; -webkit-animation: code 1202ms -404ms infinite; animation: code 1202ms -404ms infinite; } .star:nth-child(92) { transform: translate3d(233.75px, -76.25px, -6.25px) rotateY(9deg); } .star:nth-child(92)::before { content: "L"; position: absolute; -webkit-animation: code 1484ms -1836ms infinite; animation: code 1484ms -1836ms infinite; } .star:nth-child(93) { transform: translate3d(46.75px, 4.75px, -2.25px) rotateY(18deg); } .star:nth-child(93)::before { content: "L"; position: absolute; -webkit-animation: code 1010ms -1339ms infinite; animation: code 1010ms -1339ms infinite; } .star:nth-child(94) { transform: translate3d(8.25px, -162px, -161.75px) rotateY(328deg); } .star:nth-child(94)::before { content: "L"; position: absolute; -webkit-animation: code 1072ms -1547ms infinite; animation: code 1072ms -1547ms infinite; } .star:nth-child(95) { transform: translate3d(252.75px, -36.5px, 15.75px) rotateY(204deg); } .star:nth-child(95)::before { content: "L"; position: absolute; -webkit-animation: code 1010ms -1184ms infinite; animation: code 1010ms -1184ms infinite; } .star:nth-child(96) { transform: translate3d(78.5px, -58.25px, 322.75px) rotateY(27deg); } .star:nth-child(96)::before { content: "L"; position: absolute; -webkit-animation: code 1995ms -1748ms infinite; animation: code 1995ms -1748ms infinite; } .star:nth-child(97) { transform: translate3d(126px, 21.5px, 292.25px) rotateY(323deg); } .star:nth-child(97)::before { content: "L"; position: absolute; -webkit-animation: code 1183ms -1270ms infinite; animation: code 1183ms -1270ms infinite; } .star:nth-child(98) { transform: translate3d(72.5px, 131.5px, 238.5px) rotateY(359deg); } .star:nth-child(98)::before { content: "L"; position: absolute; -webkit-animation: code 1291ms -1648ms infinite; animation: code 1291ms -1648ms infinite; } .star:nth-child(99) { transform: translate3d(79.5px, -37px, 29px) rotateY(336deg); } .star:nth-child(99)::before { content: "L"; position: absolute; -webkit-animation: code 1588ms -1464ms infinite; animation: code 1588ms -1464ms infinite; } .star:nth-child(100) { transform: translate3d(190.5px, -168.25px, -245.25px) rotateY(232deg); } .star:nth-child(100)::before { content: "L"; position: absolute; -webkit-animation: code 1731ms -472ms infinite; animation: code 1731ms -472ms infinite; } .star:nth-child(101) { transform: translate3d(46px, -187px, 24.5px) rotateY(141deg); } .star:nth-child(101)::before { content: "L"; position: absolute; -webkit-animation: code 1311ms -137ms infinite; animation: code 1311ms -137ms infinite; } .star:nth-child(102) { transform: translate3d(10.25px, -45.75px, 163.5px) rotateY(24deg); } .star:nth-child(102)::before { content: "L"; position: absolute; -webkit-animation: code 1848ms -1265ms infinite; animation: code 1848ms -1265ms infinite; } .star:nth-child(103) { transform: translate3d(63px, 56.5px, -19.5px) rotateY(270deg); } .star:nth-child(103)::before { content: "L"; position: absolute; -webkit-animation: code 1625ms -894ms infinite; animation: code 1625ms -894ms infinite; } .star:nth-child(104) { transform: translate3d(-115px, 111.25px, -79px) rotateY(74deg); } .star:nth-child(104)::before { content: "L"; position: absolute; -webkit-animation: code 1956ms -521ms infinite; animation: code 1956ms -521ms infinite; } .star:nth-child(105) { transform: translate3d(110.75px, -58.25px, 152.5px) rotateY(102deg); } .star:nth-child(105)::before { content: "L"; position: absolute; -webkit-animation: code 1316ms -1172ms infinite; animation: code 1316ms -1172ms infinite; } .star:nth-child(106) { transform: translate3d(-19.75px, 9.5px, 293.75px) rotateY(123deg); } .star:nth-child(106)::before { content: "L"; position: absolute; -webkit-animation: code 1456ms -740ms infinite; animation: code 1456ms -740ms infinite; } .star:nth-child(107) { transform: translate3d(-116px, -169.75px, 0px) rotateY(186deg); } .star:nth-child(107)::before { content: "L"; position: absolute; -webkit-animation: code 1621ms -465ms infinite; animation: code 1621ms -465ms infinite; } .star:nth-child(108) { transform: translate3d(-33.25px, -138.5px, -176.75px) rotateY(49deg); } .star:nth-child(108)::before { content: "L"; position: absolute; -webkit-animation: code 1430ms -1958ms infinite; animation: code 1430ms -1958ms infinite; } .star:nth-child(109) { transform: translate3d(119.75px, -36.5px, -122.25px) rotateY(243deg); } .star:nth-child(109)::before { content: "L"; position: absolute; -webkit-animation: code 1088ms -1015ms infinite; animation: code 1088ms -1015ms infinite; } .star:nth-child(110) { transform: translate3d(-92.25px, 34px, -194.75px) rotateY(235deg); } .star:nth-child(110)::before { content: "L"; position: absolute; -webkit-animation: code 1269ms -37ms infinite; animation: code 1269ms -37ms infinite; } .star:nth-child(111) { transform: translate3d(186.5px, -187.75px, 254.75px) rotateY(191deg); } .star:nth-child(111)::before { content: "L"; position: absolute; -webkit-animation: code 1941ms -222ms infinite; animation: code 1941ms -222ms infinite; } .star:nth-child(112) { transform: translate3d(-78px, -339px, -77.75px) rotateY(218deg); } .star:nth-child(112)::before { content: "L"; position: absolute; -webkit-animation: code 1656ms -968ms infinite; animation: code 1656ms -968ms infinite; } .star:nth-child(113) { transform: translate3d(-35px, -224.5px, -54px) rotateY(18deg); } .star:nth-child(113)::before { content: "L"; position: absolute; -webkit-animation: code 1934ms -1445ms infinite; animation: code 1934ms -1445ms infinite; } .star:nth-child(114) { transform: translate3d(33.5px, -71.5px, -38.75px) rotateY(174deg); } .star:nth-child(114)::before { content: "L"; position: absolute; -webkit-animation: code 1984ms -1275ms infinite; animation: code 1984ms -1275ms infinite; } .star:nth-child(115) { transform: translate3d(12.25px, 101px, 86.25px) rotateY(292deg); } .star:nth-child(115)::before { content: "L"; position: absolute; -webkit-animation: code 1558ms -1321ms infinite; animation: code 1558ms -1321ms infinite; } .star:nth-child(116) { transform: translate3d(-123.75px, -131.75px, 99.25px) rotateY(135deg); } .star:nth-child(116)::before { content: "L"; position: absolute; -webkit-animation: code 1024ms -242ms infinite; animation: code 1024ms -242ms infinite; } .star:nth-child(117) { transform: translate3d(135.75px, 225px, 191.5px) rotateY(160deg); } .star:nth-child(117)::before { content: "L"; position: absolute; -webkit-animation: code 1447ms -811ms infinite; animation: code 1447ms -811ms infinite; } .star:nth-child(118) { transform: translate3d(50.5px, -64.75px, 12.25px) rotateY(205deg); } .star:nth-child(118)::before { content: "L"; position: absolute; -webkit-animation: code 1867ms -468ms infinite; animation: code 1867ms -468ms infinite; } .star:nth-child(119) { transform: translate3d(-151.5px, 62px, -13.75px) rotateY(11deg); } .star:nth-child(119)::before { content: "L"; position: absolute; -webkit-animation: code 1905ms -53ms infinite; animation: code 1905ms -53ms infinite; } .star:nth-child(120) { transform: translate3d(-59px, 89.75px, -118.25px) rotateY(75deg); } .star:nth-child(120)::before { content: "L"; position: absolute; -webkit-animation: code 1172ms -580ms infinite; animation: code 1172ms -580ms infinite; } .star:nth-child(121) { transform: translate3d(108.25px, -3.25px, -173.25px) rotateY(157deg); } .star:nth-child(121)::before { content: "L"; position: absolute; -webkit-animation: code 1302ms -1221ms infinite; animation: code 1302ms -1221ms infinite; } .star:nth-child(122) { transform: translate3d(144.25px, -94.25px, 123px) rotateY(11deg); } .star:nth-child(122)::before { content: "L"; position: absolute; -webkit-animation: code 1521ms -1291ms infinite; animation: code 1521ms -1291ms infinite; } .star:nth-child(123) { transform: translate3d(-316px, -47.5px, -106.5px) rotateY(159deg); } .star:nth-child(123)::before { content: "L"; position: absolute; -webkit-animation: code 1209ms -1833ms infinite; animation: code 1209ms -1833ms infinite; } .star:nth-child(124) { transform: translate3d(-199.25px, 37px, 74px) rotateY(235deg); } .star:nth-child(124)::before { content: "L"; position: absolute; -webkit-animation: code 1847ms -784ms infinite; animation: code 1847ms -784ms infinite; } .star:nth-child(125) { transform: translate3d(-158.75px, -143.25px, 47px) rotateY(108deg); } .star:nth-child(125)::before { content: "L"; position: absolute; -webkit-animation: code 1739ms -829ms infinite; animation: code 1739ms -829ms infinite; } .star:nth-child(126) { transform: translate3d(-125px, 140.5px, 213.75px) rotateY(261deg); } .star:nth-child(126)::before { content: "L"; position: absolute; -webkit-animation: code 1992ms -1492ms infinite; animation: code 1992ms -1492ms infinite; } .star:nth-child(127) { transform: translate3d(156.25px, 137px, -82.25px) rotateY(245deg); } .star:nth-child(127)::before { content: "L"; position: absolute; -webkit-animation: code 1244ms -1141ms infinite; animation: code 1244ms -1141ms infinite; } .star:nth-child(128) { transform: translate3d(376px, -24.5px, 85px) rotateY(78deg); } .star:nth-child(128)::before { content: "L"; position: absolute; -webkit-animation: code 1565ms -1347ms infinite; animation: code 1565ms -1347ms infinite; } .star:nth-child(129) { transform: translate3d(178.25px, -67.75px, -67.5px) rotateY(63deg); } .star:nth-child(129)::before { content: "L"; position: absolute; -webkit-animation: code 1366ms -1637ms infinite; animation: code 1366ms -1637ms infinite; } .star:nth-child(130) { transform: translate3d(26.75px, 48.75px, 141px) rotateY(7deg); } .star:nth-child(130)::before { content: "L"; position: absolute; -webkit-animation: code 1299ms -1479ms infinite; animation: code 1299ms -1479ms infinite; } .star:nth-child(131) { transform: translate3d(-66.5px, -203.25px, 73.75px) rotateY(50deg); } .star:nth-child(131)::before { content: "L"; position: absolute; -webkit-animation: code 1612ms -1563ms infinite; animation: code 1612ms -1563ms infinite; } .star:nth-child(132) { transform: translate3d(-223.25px, 40px, 16.75px) rotateY(8deg); } .star:nth-child(132)::before { content: "L"; position: absolute; -webkit-animation: code 1741ms -376ms infinite; animation: code 1741ms -376ms infinite; } .star:nth-child(133) { transform: translate3d(194.75px, 26.75px, 65.75px) rotateY(317deg); } .star:nth-child(133)::before { content: "L"; position: absolute; -webkit-animation: code 1284ms -1004ms infinite; animation: code 1284ms -1004ms infinite; } .star:nth-child(134) { transform: translate3d(174px, 257.5px, -120.25px) rotateY(283deg); } .star:nth-child(134)::before { content: "L"; position: absolute; -webkit-animation: code 1256ms -1475ms infinite; animation: code 1256ms -1475ms infinite; } .star:nth-child(135) { transform: translate3d(-193.75px, 30.5px, 173px) rotateY(258deg); } .star:nth-child(135)::before { content: "L"; position: absolute; -webkit-animation: code 1561ms -498ms infinite; animation: code 1561ms -498ms infinite; } .star:nth-child(136) { transform: translate3d(-179px, 50.5px, 267.25px) rotateY(268deg); } .star:nth-child(136)::before { content: "L"; position: absolute; -webkit-animation: code 1964ms -336ms infinite; animation: code 1964ms -336ms infinite; } .star:nth-child(137) { transform: translate3d(153.25px, 126.75px, -113.25px) rotateY(152deg); } .star:nth-child(137)::before { content: "L"; position: absolute; -webkit-animation: code 1895ms -829ms infinite; animation: code 1895ms -829ms infinite; } .star:nth-child(138) { transform: translate3d(230.5px, 40.25px, -109.5px) rotateY(126deg); } .star:nth-child(138)::before { content: "L"; position: absolute; -webkit-animation: code 1613ms -1876ms infinite; animation: code 1613ms -1876ms infinite; } .star:nth-child(139) { transform: translate3d(95.25px, -85.75px, 223px) rotateY(1deg); } .star:nth-child(139)::before { content: "L"; position: absolute; -webkit-animation: code 1774ms -389ms infinite; animation: code 1774ms -389ms infinite; } .star:nth-child(140) { transform: translate3d(3.75px, 93.75px, -77.5px) rotateY(302deg); } .star:nth-child(140)::before { content: "L"; position: absolute; -webkit-animation: code 1698ms -439ms infinite; animation: code 1698ms -439ms infinite; } .star:nth-child(141) { transform: translate3d(-142.25px, -51.75px, 187px) rotateY(195deg); } .star:nth-child(141)::before { content: "L"; position: absolute; -webkit-animation: code 1851ms -1201ms infinite; animation: code 1851ms -1201ms infinite; } .star:nth-child(142) { transform: translate3d(37.25px, -19.5px, -71.5px) rotateY(351deg); } .star:nth-child(142)::before { content: "L"; position: absolute; -webkit-animation: code 1057ms -371ms infinite; animation: code 1057ms -371ms infinite; } .star:nth-child(143) { transform: translate3d(-199.75px, -0.25px, 157px) rotateY(99deg); } .star:nth-child(143)::before { content: "L"; position: absolute; -webkit-animation: code 1272ms -1099ms infinite; animation: code 1272ms -1099ms infinite; } .star:nth-child(144) { transform: translate3d(-3px, 53.5px, 61px) rotateY(196deg); } .star:nth-child(144)::before { content: "L"; position: absolute; -webkit-animation: code 1172ms -982ms infinite; animation: code 1172ms -982ms infinite; } .star:nth-child(145) { transform: translate3d(-199px, 68.25px, -50.75px) rotateY(131deg); } .star:nth-child(145)::before { content: "L"; position: absolute; -webkit-animation: code 1439ms -1038ms infinite; animation: code 1439ms -1038ms infinite; } .star:nth-child(146) { transform: translate3d(207.5px, -135.25px, 157px) rotateY(185deg); } .star:nth-child(146)::before { content: "L"; position: absolute; -webkit-animation: code 1860ms -1731ms infinite; animation: code 1860ms -1731ms infinite; } .star:nth-child(147) { transform: translate3d(134.25px, -76.25px, 64px) rotateY(229deg); } .star:nth-child(147)::before { content: "L"; position: absolute; -webkit-animation: code 1527ms -673ms infinite; animation: code 1527ms -673ms infinite; } .star:nth-child(148) { transform: translate3d(-233.5px, -121px, 23.5px) rotateY(106deg); } .star:nth-child(148)::before { content: "L"; position: absolute; -webkit-animation: code 1363ms -697ms infinite; animation: code 1363ms -697ms infinite; } .star:nth-child(149) { transform: translate3d(262px, -8.25px, 97px) rotateY(80deg); } .star:nth-child(149)::before { content: "L"; position: absolute; -webkit-animation: code 1126ms -1065ms infinite; animation: code 1126ms -1065ms infinite; } .star:nth-child(150) { transform: translate3d(72.75px, -308.25px, 118.75px) rotateY(94deg); } .star:nth-child(150)::before { content: "L"; position: absolute; -webkit-animation: code 1011ms -1802ms infinite; animation: code 1011ms -1802ms infinite; } .star:nth-child(151) { transform: translate3d(75.75px, -297.75px, -219.5px) rotateY(222deg); } .star:nth-child(151)::before { content: "L"; position: absolute; -webkit-animation: code 1669ms -939ms infinite; animation: code 1669ms -939ms infinite; } .star:nth-child(152) { transform: translate3d(-35.25px, -127.25px, 6.75px) rotateY(253deg); } .star:nth-child(152)::before { content: "L"; position: absolute; -webkit-animation: code 1830ms -1130ms infinite; animation: code 1830ms -1130ms infinite; } .star:nth-child(153) { transform: translate3d(-33.25px, -17.75px, -107.25px) rotateY(281deg); } .star:nth-child(153)::before { content: "L"; position: absolute; -webkit-animation: code 1001ms -1356ms infinite; animation: code 1001ms -1356ms infinite; } .star:nth-child(154) { transform: translate3d(151.75px, -332.25px, 82.5px) rotateY(57deg); } .star:nth-child(154)::before { content: "L"; position: absolute; -webkit-animation: code 1866ms -1939ms infinite; animation: code 1866ms -1939ms infinite; } .star:nth-child(155) { transform: translate3d(25.75px, -70.25px, 30.25px) rotateY(41deg); } .star:nth-child(155)::before { content: "L"; position: absolute; -webkit-animation: code 1296ms -49ms infinite; animation: code 1296ms -49ms infinite; } .star:nth-child(156) { transform: translate3d(103.25px, 110.75px, -39.25px) rotateY(16deg); } .star:nth-child(156)::before { content: "L"; position: absolute; -webkit-animation: code 1694ms -877ms infinite; animation: code 1694ms -877ms infinite; } .star:nth-child(157) { transform: translate3d(-351.5px, -147.75px, -104.75px) rotateY(342deg); } .star:nth-child(157)::before { content: "L"; position: absolute; -webkit-animation: code 1023ms -1196ms infinite; animation: code 1023ms -1196ms infinite; } .star:nth-child(158) { transform: translate3d(174.5px, -128.25px, -82px) rotateY(156deg); } .star:nth-child(158)::before { content: "L"; position: absolute; -webkit-animation: code 1700ms -97ms infinite; animation: code 1700ms -97ms infinite; } .star:nth-child(159) { transform: translate3d(-245.75px, 114.5px, 156px) rotateY(264deg); } .star:nth-child(159)::before { content: "L"; position: absolute; -webkit-animation: code 1382ms -1500ms infinite; animation: code 1382ms -1500ms infinite; } .star:nth-child(160) { transform: translate3d(-135px, 90.25px, 205.25px) rotateY(74deg); } .star:nth-child(160)::before { content: "L"; position: absolute; -webkit-animation: code 1946ms -970ms infinite; animation: code 1946ms -970ms infinite; } .star:nth-child(161) { transform: translate3d(4.5px, 146.5px, 63px) rotateY(124deg); } .star:nth-child(161)::before { content: "L"; position: absolute; -webkit-animation: code 1189ms -1055ms infinite; animation: code 1189ms -1055ms infinite; } .star:nth-child(162) { transform: translate3d(-25.75px, 109.75px, 164.5px) rotateY(72deg); } .star:nth-child(162)::before { content: "L"; position: absolute; -webkit-animation: code 1574ms -1370ms infinite; animation: code 1574ms -1370ms infinite; } .star:nth-child(163) { transform: translate3d(192px, -149.5px, 174px) rotateY(310deg); } .star:nth-child(163)::before { content: "L"; position: absolute; -webkit-animation: code 1033ms -157ms infinite; animation: code 1033ms -157ms infinite; } .star:nth-child(164) { transform: translate3d(-205.5px, -7.5px, 177px) rotateY(126deg); } .star:nth-child(164)::before { content: "L"; position: absolute; -webkit-animation: code 1911ms -1978ms infinite; animation: code 1911ms -1978ms infinite; } .star:nth-child(165) { transform: translate3d(217.5px, 32.25px, -16.75px) rotateY(168deg); } .star:nth-child(165)::before { content: "L"; position: absolute; -webkit-animation: code 1132ms -1675ms infinite; animation: code 1132ms -1675ms infinite; } .star:nth-child(166) { transform: translate3d(-71.5px, -72px, -118.5px) rotateY(318deg); } .star:nth-child(166)::before { content: "L"; position: absolute; -webkit-animation: code 1838ms -371ms infinite; animation: code 1838ms -371ms infinite; } .star:nth-child(167) { transform: translate3d(267.75px, 272px, -77.75px) rotateY(119deg); } .star:nth-child(167)::before { content: "L"; position: absolute; -webkit-animation: code 1633ms -1721ms infinite; animation: code 1633ms -1721ms infinite; } .star:nth-child(168) { transform: translate3d(200.5px, 43.75px, -46.75px) rotateY(112deg); } .star:nth-child(168)::before { content: "L"; position: absolute; -webkit-animation: code 1469ms -872ms infinite; animation: code 1469ms -872ms infinite; } .star:nth-child(169) { transform: translate3d(130.5px, 26.5px, -82px) rotateY(110deg); } .star:nth-child(169)::before { content: "L"; position: absolute; -webkit-animation: code 1022ms -515ms infinite; animation: code 1022ms -515ms infinite; } .star:nth-child(170) { transform: translate3d(176px, -301px, -169.5px) rotateY(216deg); } .star:nth-child(170)::before { content: "L"; position: absolute; -webkit-animation: code 1462ms -9ms infinite; animation: code 1462ms -9ms infinite; } .star:nth-child(171) { transform: translate3d(103.5px, -26px, -32px) rotateY(34deg); } .star:nth-child(171)::before { content: "L"; position: absolute; -webkit-animation: code 1703ms -476ms infinite; animation: code 1703ms -476ms infinite; } .star:nth-child(172) { transform: translate3d(65.75px, 2.75px, 57.5px) rotateY(339deg); } .star:nth-child(172)::before { content: "L"; position: absolute; -webkit-animation: code 1356ms -1214ms infinite; animation: code 1356ms -1214ms infinite; } .star:nth-child(173) { transform: translate3d(-140.25px, 74.75px, -130.25px) rotateY(78deg); } .star:nth-child(173)::before { content: "L"; position: absolute; -webkit-animation: code 1507ms -351ms infinite; animation: code 1507ms -351ms infinite; } .star:nth-child(174) { transform: translate3d(-307px, 152.75px, 44px) rotateY(211deg); } .star:nth-child(174)::before { content: "L"; position: absolute; -webkit-animation: code 1875ms -1691ms infinite; animation: code 1875ms -1691ms infinite; } .star:nth-child(175) { transform: translate3d(71.25px, -63.5px, -286px) rotateY(192deg); } .star:nth-child(175)::before { content: "L"; position: absolute; -webkit-animation: code 1006ms -1537ms infinite; animation: code 1006ms -1537ms infinite; } .star:nth-child(176) { transform: translate3d(5px, -15px, -170.25px) rotateY(114deg); } .star:nth-child(176)::before { content: "L"; position: absolute; -webkit-animation: code 1558ms -1373ms infinite; animation: code 1558ms -1373ms infinite; } .star:nth-child(177) { transform: translate3d(174.75px, 8px, 93.5px) rotateY(158deg); } .star:nth-child(177)::before { content: "L"; position: absolute; -webkit-animation: code 1181ms -243ms infinite; animation: code 1181ms -243ms infinite; } .star:nth-child(178) { transform: translate3d(79px, 101px, -148.75px) rotateY(358deg); } .star:nth-child(178)::before { content: "L"; position: absolute; -webkit-animation: code 1221ms -1548ms infinite; animation: code 1221ms -1548ms infinite; } .star:nth-child(179) { transform: translate3d(-177.25px, -248.5px, 293.75px) rotateY(66deg); } .star:nth-child(179)::before { content: "L"; position: absolute; -webkit-animation: code 1892ms -552ms infinite; animation: code 1892ms -552ms infinite; } .star:nth-child(180) { transform: translate3d(115.25px, -100.75px, -50px) rotateY(218deg); } .star:nth-child(180)::before { content: "L"; position: absolute; -webkit-animation: code 1576ms -789ms infinite; animation: code 1576ms -789ms infinite; } .star:nth-child(181) { transform: translate3d(0.5px, 108.25px, -88.25px) rotateY(91deg); } .star:nth-child(181)::before { content: "L"; position: absolute; -webkit-animation: code 1981ms -320ms infinite; animation: code 1981ms -320ms infinite; } .star:nth-child(182) { transform: translate3d(-32.25px, 204.25px, 31.5px) rotateY(42deg); } .star:nth-child(182)::before { content: "L"; position: absolute; -webkit-animation: code 1234ms -1138ms infinite; animation: code 1234ms -1138ms infinite; } .star:nth-child(183) { transform: translate3d(-115.75px, -269.5px, 99.25px) rotateY(205deg); } .st.........完整代码请登录后点击上方下载按钮下载查看
网友评论0