You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
2.9 KiB
JavaScript
30 lines
2.9 KiB
JavaScript
var nm3 = ["Acoustic", "Analogue", "Audio", "Audio", "Audio", "Aural", "Bass", "Beat", "Dynamic", "Groove", "Harmonic", "Instrument", "Music", "Sonic", "Sound", "Sound", "Stereo", "Symphonic", "Tune", "Wave", ""];
|
|
|
|
function nameGen() {
|
|
var nm1 = ["All Ears", "Amplified", "Audio Boom", "Audiology", "Audiophiles", "B Sharp", "Bells 'n Whistles", "Big Waves", "Brothers of the String", "Cacaphony", "Carry A Tune", "Compare Notes", "Ear to Ear", "For The Record", "Good Acoustics", "Good Vibes", "Groove Network", "Guitar Cellar", "Harmonize", "Hear Me Out", "Here, Hear!", "High Fidelity", "High Keys", "Instrumental", "Instrumental Choice", "Joyful Noise", "Key Choice", "Key Notes", "Keys To Your Heart", "King Toot", "Loud and Clear", "Loud and Proud", "Make Waves", "Making Music", "Megalomelody", "Melody Market", "Mix It Up", "Modern Sounds", "Music Market", "Music to My Ears", "Music to Your Ears", "New Tunes", "Notable", "On A High Note", "On Pitch", "Orchestral Options", "Orchestration Station", "Percussion Paradise", "Percussion Power", "Picks and Mix", "Platinum Plaza", "Pulling Strings", "Pure Audio", "Pure Sound", "Resonance", "Resonance Renaissance", "Resonate", "RnBusiness", "Rocking It", "Sense of Music", "Sensorisations", "Set The Tone", "Sonic Supply", "Soul", "Sound Bites", "Sound Check", "Sound Choice", "Sound Engineers", "Sound of Music", "Sounds Good", "Sounds Great", "Strings Attached", "Strings and Things", "Strings of Luck", "Super Sonics", "Surrounded By Sound", "Sweet Symphonies", "Symphonic", "Take Note", "The Bassment", "The Boom Room", "The Headbangers", "The Right Mix", "The Right Note", "The String Quarter", "Tune In", "Tuning In", "Underground Sound", "Winning Sounds", "Woodwind Wonders", "World of Hertz", "World on Strings"];
|
|
var nm2 = ["Addiction", "Agency", "Center", "Circus", "City", "Depot", "Design", "Dimension", "Engineers", "House", "Innovations", "Life", "Masters", "Outlet", "Plaza", "Productions", "Quest", "Revolution", "Salvation", "Secrets", "Solutions", "Studio", "Systems"];
|
|
var br = "";
|
|
var element = document.createElement("div");
|
|
element.setAttribute("id", "result");
|
|
for (i = 0; i < 10; i++) {
|
|
nTp = Math.random() * 4 | 0;
|
|
if (nTp === 0) {
|
|
rnd = Math.random() * nm2.length | 0;
|
|
rnd2 = Math.random() * nm3.length | 0;
|
|
names = nm3[rnd2] + " " + nm2[rnd];
|
|
nm2.splice(rnd, 0);
|
|
} else {
|
|
rnd = Math.random() * nm1.length | 0;
|
|
names = nm1[rnd];
|
|
nm1.splice(rnd, 0);
|
|
}
|
|
br = document.createElement('br');
|
|
element.appendChild(document.createTextNode(names));
|
|
element.appendChild(br);
|
|
}
|
|
if (document.getElementById("result")) {
|
|
document.getElementById("placeholder").removeChild(document.getElementById("result"));
|
|
}
|
|
document.getElementById("placeholder").appendChild(element);
|
|
}
|