|
|
(15 intermediate revisions by 3 users not shown) |
Line 1: |
Line 1: |
| | {{#get_db_data: db=DATA |
| | |parameters=10 |
| | |query=did_you_know |
| | |data=dyk_text=text |
| | }} |
| <templatestyles src="Home/DidYouKnow/styles.css" /> | | <templatestyles src="Home/DidYouKnow/styles.css" /> |
| <html>
| | <div id="DidYouKnow" style="box-shadow: 0px 0px 14px rgb(192 14 170 / 75%), inset 0 0 14px rgb(246 21 115);" > |
| <div id="DidYouKnow"> | |
| <h2>Did You Know?</h2> | | <h2>Did You Know?</h2> |
| <ul class="factlist"> | | <ul class="factlist"> |
| <li>...that <a href="/wiki/The_Midnight_Remixed" title="The Midnight Remixed">The Midnight Remixed</a> is the band's first release to appear on a Billboard chart?</li>
| | {{#for_external_table: |
| <li>...that <a href="/wiki/Tyler_Lyle" title="Tyler Lyle">Tyler Lyle</a> once lived in Paris?</li>
| | <li>{{{dyk_text}}}</li> |
| <li>...that <a href="/wiki/Tim_McEwan" title="Tim McEwan">Tim McEwan</a> <a href="/wiki/Songs_by_Tim_McEwan" title="Songs by Tim McEwan">co-wrote and produced</a> a song for New Kids On The Block?</li>
| | }} |
| <li>...that touring member <a href="/wiki/Jupiter_Winter#Lelia_Broussard" title="Jupiter Winter">Lelia Broussard</a> was on the US version of singing competition <i>The Voice</i>?</li>
| |
| <li>...that <a href="/wiki/Nighthawks" title="Nighthawks">Nighthawks</a> and <a href="/wiki/Lonely_City" title="Lonely City">Lonely City</a> were once one combined song?</li> | |
| <li>...that the voice in the intro of <a href="/wiki/River_of_Darkness" title="River of Darkness">River of Darkness</a> is from a guy named Eric?</li>
| |
| <li>...that <a href="/wiki/WeMoveForward" title="WeMoveForward">WeMoveForward</a> was the first song written by the band?</li>
| |
| <li>...that <a href="/wiki/Daytona" title="Daytona">Daytona</a> had a working title of <i>Daytona Beach</i>?</li>
| |
| <li>...that <a href="/wiki/Tim_McEwan" title="Tim McEwan">Tim McEwan</a> once played drums in the Eurovison Song Contest?</li>
| |
| <li>...that <a href="/wiki/Youth" title="Youth">Youth</a> was used as the opening track for the <a href="/wiki/Fall_2018_Tour" title="Fall 2018 Tour">Fall 2018</a> and <a href="/wiki/Spring_2019_Tour" title="Spring 2019 Tour">Spring 2019</a> tours?</li>
| |
| <li>...that <a href="/wiki/Brooklyn" title="Brooklyn">Brooklyn</a> was originally released on the <a href="/wiki/Tyler_Lyle" title="Tyler Lyle">Tyler Lyle</a> album The Floating Years?</li>
| |
| <li>...that <a href="/wiki/Dream_Away" title="Dream Away">Dream Away</a> was described by <a href="/wiki/Tim_McEwan" title="Tim McEwan">Tim McEwan</a> as being an ode to "Pure Moods compilations from the 90s"?</li>
| |
| <li>...that for five years <a href="/wiki/Comet" title="Comet">Comet</a> was nothing more than a small snippet on Facebook before finally being released in 2021?</li>
| |
| <li>...that <a href="/wiki/Dance_With_Somebody" title="Dance With Somebody">Dance With Somebody</a> was once in a different key and had a guitar solo instead of a sax solo?</li>
| |
| <li>...that an <a href="/wiki/Jason#Demo_version" title="Jason">early version</a> of <a href="/wiki/Jason" title="Jason">Jason</a> used the backing track from what would become <a href="/wiki/The_Equaliser_(Not_Alone)" title="The Equaliser (Not Alone)">The Equaliser (Not Alone)</a>?</li>
| |
| <li>...that <a href="/wiki/The_Midnight" title="The Midnight">The Midnight's</a> first live concert was at the DNA Lounge in San Francisco in July 2017?</li>
| |
| </ul> | | </ul> |
| <head>
| |
| <script>
| |
| $(".factlist > li").hide();
| |
| randomItem();
| |
|
| |
| function randomItem(){
| |
| for (var i = 0; i < 5; i++){
| |
| var length = $(".factlist > li:not(:visible)").length;
| |
| var random = Math.floor(Math.random() * length);
| |
| $(".factlist > li:not(:visible)").eq(random).show();
| |
| }
| |
| }
| |
| </script>
| |
| </div> | | </div> |
| </head>
| |
| </html>
| |