33< head >
44 < meta charset ="UTF-8 " />
55 < meta name ="viewport " content ="width=device-width, initial-scale=1.0 "/>
6- < title > UmbrioX (᪣UBX)</ title >
7- // Version 550.40 (For Google Search Console)
8- // Created by B-HDtm (Do not copy all code! Only 1 part of code)
9- < link rel ="icon " type ="image/png " href ="/ico.png "/>
6+ < title > UmbrioX (᪣UBX)</ title > // Version 550.41 (For Google Search Console)
7+ < link rel ="icon " type ="image/png " href ="/ico.png "/> // Created by B-HD™ (Do not copy all code! Only 1 part of code)
108 < script src ="https://cdn.jsdelivr.net/npm/chart.js "> </ script >
119 < style >
1210 body {
212210 transform : translateX (-100% );
213211 }
214212} / * Release
213+
214+ .exchange-section {
215+ background-color : # 111827 ;
216+ border-radius : 1rem ;
217+ padding : 2rem ;
218+ margin-top : 2rem ;
219+ max-width : 900px ;
220+ margin-left : auto;
221+ margin-right : auto;
222+ text-align : center;
223+ position : relative;
224+ z-index : 1 ;
225+ }
226+
227+ .exchange-title {
228+ color : # d8b4fe ;
229+ font-size : 1.75rem ;
230+ margin-bottom : 0.5rem ;
231+ }
232+
233+ .exchange-desc {
234+ color : # 9ca3af ;
235+ font-size : 1rem ;
236+ margin-bottom : 1.5rem ;
237+ }
238+
239+ # galaxy {
240+ position : relative;
241+ width : 600px ;
242+ height : 600px ;
243+ margin : 0 auto;
244+ border-radius : 50% ;
245+ overflow : visible;
246+ }
247+
248+ # galaxy img {
249+ pointer-events : none;
250+ }
215251 </ style >
216252 < title > UmbrioX (᪣UBX) - New cryptocurrency of the future</ title >
217253 < meta name ="description " content ="UmbrioX (᪣UBX) - innovative cryptocurrency on TON. Invest in the future with fast transactions and high security. Find out the price of UBX and join! " />
251287 < br />
252288 </ div >
253289 < p style ="text-align: center; font-size: 1.25rem; color: #d1d5db; ">
254- Welcome to UmbrioX - the cryptocurrency created by B* HD™ 🚀
290+ Welcome to UmbrioX - the cryptocurrency created by B- HD™ 🚀
255291 </ p >
256292 < div class ="card ">
257293 < div style ="text-align: center; ">
@@ -261,7 +297,15 @@ <h2>Current price:</h2>
261297 </ div >
262298 < canvas id ="chart "> </ canvas >
263299 </ div >
264- < div id ="galaxy "> </ div >
300+ < div class ="exchange-section ">
301+ < h2 class ="exchange-title "> UmbrioX Galaxy of Exchanges</ h2 >
302+ < p class ="exchange-desc ">
303+ Explore all the places where UmbrioX shines in the crypto universe.
304+ Click on an exchange to trade or learn more!
305+ </ p >
306+
307+ < div id ="galaxy "> </ div >
308+ </ div >
265309 < div class ="about ">
266310 < h2 style ="color: #d8b4fe; font-size: 1.75rem; "> About UmbrioX</ h2 >
267311 < p > UmbrioX is a cryptocurrency of a new era. It is created for those who are ready to go beyond the ordinary and explore the financial horizons of the future. The symbol ᪣ represents the mystery of this world.</ p >
@@ -613,17 +657,13 @@ <h2 style="color: #d8b4fe; font-size: 1.75rem;">About UmbrioX</h2>
613657 } , 23000 ) ;
614658 } ) ;
615659 </ script >
660+
616661< script >
617662const galaxy = document . getElementById ( "galaxy" ) ;
618- galaxy . style . position = "relative" ;
619- galaxy . style . width = "600px" ;
620- galaxy . style . height = "600px" ;
621- galaxy . style . margin = "2rem auto" ;
622- galaxy . style . borderRadius = "50%" ;
623- galaxy . style . overflow = "visible" ;
624663
664+ // UmbrioX
625665const center = document . createElement ( "div" ) ;
626- center . innerHTML = "<img src='https://umbriox.pp.ua/assets/UBX.gif ' width='100'/>" ;
666+ center . innerHTML = "<img src='https://github.com/B-HDtm/UmbrioX/blob/main/ico.png ' width='100'/>" ;
627667center . style . position = "absolute" ;
628668center . style . left = "50%" ;
629669center . style . top = "50%" ;
@@ -634,13 +674,24 @@ <h2 style="color: #d8b4fe; font-size: 1.75rem;">About UmbrioX</h2>
634674const exchanges = [
635675 { name : "DeDust" , url : "https://dedust.io" , img : "https://dedust.io/favicon.ico" } ,
636676 { name : "STON.fi" , url : "https://ston.fi" , img : "https://ston.fi/favicon.ico" } ,
637- { name : "Blum" , url : "https://blum.codes" , img : "https://blum.codes/favicon.ico" } ,
638677 { name : "Tonkeeper" , url : "https://tonkeeper.com" , img : "https://tonkeeper.com/favicon.ico" } ,
639678] ;
640679
641680exchanges . forEach ( ( ex , i ) => {
642681 const angle = ( i / exchanges . length ) * 2 * Math . PI ;
643- const orbit = 200 ; // радиус орбиты
682+ const orbit = 200 ;
683+
684+ const line = document . createElement ( "div" ) ;
685+ line . style . position = "absolute" ;
686+ line . style . left = "50%" ;
687+ line . style . top = "50%" ;
688+ line . style . width = orbit + "px" ;
689+ line . style . height = "2px" ;
690+ line . style . background = "linear-gradient(to right, #7e22ce, #4f46e5, #0ea5e9)" ;
691+ line . style . transformOrigin = "left center" ;
692+ line . style . transform = `rotate(${ angle } rad)` ;
693+ line . style . opacity = "0.7" ;
694+ galaxy . appendChild ( line ) ;
644695
645696 const planet = document . createElement ( "a" ) ;
646697 planet . href = ex . url ;
@@ -652,25 +703,18 @@ <h2 style="color: #d8b4fe; font-size: 1.75rem;">About UmbrioX</h2>
652703 planet . style . left = "50%" ;
653704 planet . style . top = "50%" ;
654705 planet . style . transform = `translate(${ orbit * Math . cos ( angle ) } px, ${ orbit * Math . sin ( angle ) } px)` ;
655- planet . style . transition = "transform 0.5s linear" ;
656- planet . innerHTML = `<img src=" ${ ex . img } " title=" ${ ex . name } " style="width:100%;height:100%;border-radius:50%;box-shadow:0 0 10px white;">`;
706+ planet . innerHTML = `<img src=" ${ ex . img } " title=" ${ ex . name } "
707+ style="width:100%;height:100%;border-radius:50%;box-shadow:0 0 15px white;">` ;
657708
658709 galaxy . appendChild ( planet ) ;
659710
660711 let a = angle ;
661712 setInterval ( ( ) => {
662713 a += 0.01 ;
663714 planet . style . transform = `translate(${ orbit * Math . cos ( a ) } px, ${ orbit * Math . sin ( a ) } px)` ;
715+ line . style . transform = `rotate(${ a } rad)` ;
664716 } , 50 ) ;
665717} ) ;
666718</ script >
667- < script async src ="https://www.googletagmanager.com/gtag/js?id=G-ZLTXQRVTMS "> </ script >
668- < script >
669- window . dataLayer = window . dataLayer || [ ] ;
670- function gtag ( ) { dataLayer . push ( arguments ) ; }
671- gtag ( 'js' , new Date ( ) ) ;
672-
673- gtag ( 'config' , 'G-ZLTXQRVTMS' ) ;
674- </ script >
675719</ body >
676720</ html >
0 commit comments