Categories: trending

These 13 logos have broken, do you still recognize them?

Sergio Mining

“An elephant walks into a china shop and destroys all the logos…” begins an old joke. How the joke continues is irrelevant to this story, but the fact that different logos are now lying around in their separate parts is. Now it’s up to you to identify which companies and companies are wanted. But don’t put too much pressure on yourself, we’ll give you a helping hand.

In the first photo you can see the logo completely destroyed and wildly confused. Then if you don’t recognize it, you can look at a second photo. There you will see part of the logo (above the other parts) already in the correct order.

Let’s start with a simple logo so you know how the quiz works.

Remaining attempts: ” + no attempts + “

” + button code + “

“); counter++; }); // When user enters tip $(“.imgguesser”).on(‘keyup’, function (e) { if (e.keyCode === 13) { var tries = $ (this).attr(“trying”); if (trying > 0) { var number = $(this).attr(“name”) – 1; $(this).attr(“trying”, trying – 1) ; $(“.try[number=”” + (number + 1) + “”]”).html(“Remaining attempts: ” + (attempts – 1)); var solution = images[number]; var guess = $(this).val(); var field = $(this); var state = $(“.solve[number=”” + (number + 1) + “”]”).attr(“state”); $(solution[3]).each(function (key, name variations) { // For each player… if (check_guess(name variations, guess, field, number, solution, solution[3], state) == false) { return false; } }); // trying to survive? console.log(try); if (trying <= 1) { lost($(".resolve[number="" + (number + 1) + ""]")); } } } }); // button click $(".resolve").click(function () { var number = $(this).attr("number") - 1; if ($( this ).attr('state') == 0) { // give second image var solution = images[number]; $(".tipslist[number="" + (number + 1) + ""]").html('

1st Tip:


‘); $(this).attr(‘state’, 1); $(this).html(‘View Note’); $(“input[name=”” + (number + 1) + “”]”).focus(); } else if ($(this).attr(‘state’) == 1) { // Show second tip $(“.tiplist[number=”” + (number + 1) + “”]”).add(‘

2nd hint: ‘ + images[number][2] + ‘

‘); $(this).attr(‘state’, 2); $(“input[name=”” + (number + 1) + “”]”).focus(); $(this).html(‘Give up’); } else { lost($(this)); } }); // Function: Abandoned or exhausted attempts function lost(elm) { elm .prop(“disabled”, true); // disable button var solution = images[elm.attr(“number”) – 1]; $(“input[name=”” + elm.attr(“number”) + “”]”).prop(“disabled”, true); $(“input[name=”” + elm.attr(“number”) + “”]”).css(“border”, “2px solid #F40F97”); var guessed = $(“.guess-” + elm.attr(“number”)).length; $(“

Solution

“).insertAfter(elm); game_finished(); } // FUNCTION: check guess function check_guess(value, guess, field, number, solution, name variations, state) { var width = $(“#images”).width ( ) ; var default link = name variations[0]; // Exceptions //guess = guess.replace(/hcd/ig, “ACRFRIqLxzdDfeEZ”).replace(/barce/ig, “EwM676Ut2dLhwBSQ”).replace(/nice/ig, “NWgCzTfgnFNpcWkY”).replace(/bayer / ig, “nCpVIBuHqIoHWPOS”).replace(/bayern/ig, “pjGkuINlfQtUplNP”); //value = value.replace(/hcd/ig, “ACRFRIqLxzdDfeEZ”).replace(/barce/ig, “EwM676Ut2dLhwBSQ”).replace(/nice/ig, “NWgCzTfgnFNpcWkY”).replace(/bayer /ig, ” nCpVIBuHqIoHWPOS”).replace(/bayern/ig, “pjGkuINlfQtUplNP”); if (levenshtein(guess.toLowerCase(), value.toLowerCase()) <= 1) { // Richtig geraten field.val(""); // Guess aus dem Array löschen images[number][3] = images[number][3].filter(e => e !== name variations); $(““).insertAfter(field); // Distribute points and adjust tips (if necessary) if (state == 0) { // Free guess: 2 points wonpoints += 3; } else if (state == 1) { / / With image tip wonpoints += 2; } else { // With text tip wonpoints += 1; } // If all guesses are correct: field.prop(“disabled”, true); field.css(“border” ,” 2px solid #7bd400″); var button = $(“button[number=”” + (number + 1) + “”]”); button.prop(“disabled”, true); $(button).after(“

Perfect!”); $(“.try[number=”” + (number + 1) + “”]”).hide(); game_finished(); return false; // Break each loop } else { field.css(“border”, “2px solid #F40F97″); field.val(”); return true ; } } // FUNCTION: Check if the game is over function game_finished() { var done = true; $(“.imgguesser”).each(function () { if ($(this).prop(‘disabled’ ) == false) { finished = false; return; } }); if (finished) { var totalplayers = 0; totalplayers = images.length * 3; var ranking = [
/******** HIERHIN RANKING KOPIEREN ********/

[“6”, 41, “Oho, grossartig! Am besten lässt du deine Augen versichern.”],
[“5,5”, 36, “Ziemlich gut, aber nicht perfekt. Aber eben zeimlich gut.”],
[“5”, 31, “Gut gemacht! Mit einer 5 darf man schon angeben.”],
[“4,5”, 26, “Damit kann man doch zufrieden sein.”],
[“4”, 21, “Egal, alles mit 4 und höher reicht.”],
[“3,5”, 16, “Leider knapp an der rettenden 4 vorbeigeschramt.”],
[“3”, 11, “Da kann leider niemand stolz sein.”],
[“2”, 6, “Uff! Das war wohl leider nichts.”],
[“1”, 0, “Uff! Das war wohl leider nichts.”]

/******** END RANK ********/ ]; var array text = “”; $(rank).each(function (k, v) { if (points won >= v[1]) { ranking text = “Your grade is ” + v[0] + “. You have ” + points won + ” on a total of ” +totalplayers + ” possible points fetched. ” + v[2]; return false; } }) $(“#outputtext”).html(“

Your result

” + ranking text + “

“); } } // FUNCTION: Check for matches between two strings function levenshtein(str1, str2) { var m = str1.length, n = str2.length, d = [],i,j; if (!m) returns n; if (!n) returns m; for (i = 0; i <= m; i++) d[i] = [i]; for (j = 0; j <= n; j++) d[0][j] = j; for (j = 1; j <= n; j++) { for (i = 1; i <= m; i++) { if (str1[i - 1] ===str2[j - 1]) {ie[i][j] = ie[i - 1][j - 1]; } else {ie[i][j] = Math.min(ie[i - 1][j]i.e[i][j - 1]i.e[i - 1][j - 1]) + 1; } } } return d[m][n]; } // FUNCTION: edit tips function create_pixler(number) { var list = images[number][1]; var position = $(".solve[number="" + (number + 1) + ""]"); var player list = []; $(list).each(function (k, v) { // Pixelate the missing teams as ($('p:contains(' + v[0] + ')').length == 0) { var pixeled = ""; var pixel counter = 0; for (var i = 0; i < v[0].length; i++) { if (v[0].charAt(i) == " ") { // If it's a space, render normal pixelated += " "; } else { if (pixlcounter == 2) { pixelated += v[0].charAt(i); pixel counter = 0; } else { pixelated += "_"; pixelcounter++; } } } playerlist.push(pixeled); } }); var team list = ""; $(playerlist).elk(function (k, v) { teamlist += "

” + v + “

“; }); if (teamlist != “”) { $(“.tiplist[number=”” + (number + 1) + “”]”).html(“

You are still missing these solutions:

” + teamlist); } else { $(“.tiplist[number=”” + (number + 1) + “”]”).html(“”); } } });

Your result

Each quiz requires you to guess everything or solve the question to see the result.

Sergio Mining

Source: Watson

Share
Published by
Ross

Recent Posts

Terror suspect Chechen ‘hanged himself’ in Russian custody Egyptian President al-Sisi has been sworn in for a third term

On the same day of the terrorist attack on the Krokus City Hall in Moscow,…

1 year ago

Locals demand tourist tax for Tenerife: “Like a cancer consuming the island”

class="sc-cffd1e67-0 iQNQmc">1/4Residents of Tenerife have had enough of noisy and dirty tourists.It's too loud, the…

1 year ago

Agreement reached: this is how much Tuchel will receive for his departure from Bayern

class="sc-cffd1e67-0 iQNQmc">1/7Packing his things in Munich in the summer: Thomas Tuchel.After just over a year,…

1 year ago

Worst earthquake in 25 years in Taiwan +++ Number of deaths increased Is Russia running out of tanks? Now ‘Chinese coffins’ are used

At least seven people have been killed and 57 injured in severe earthquakes in the…

1 year ago

Now the moon should also have its own time (and its own clocks). These 11 photos and videos show just how intense the Taiwan earthquake was

The American space agency NASA would establish a uniform lunar time on behalf of the…

1 year ago

This is how the Swiss experienced the earthquake in Taiwan: “I saw a crack in the wall”

class="sc-cffd1e67-0 iQNQmc">1/8Bode Obwegeser was surprised by the earthquake while he was sleeping. “It was a…

1 year ago