Amazing Love Puzzle Using HTML , CSS And JavaScript With Source Code

Amezing Love Puzzle Using HTML , CSS And Javascript

Introduction :

All of you developer friends are welcome to this new blog post. Today we have created a wonderful love puzzle which is very superhit. Friends, to create this love puzzle, we have created it with the help of pure JavaScript and HTML CSS. In this love puzzle, you can find someone. You can also insert images, that is, you can edit the image very easily.

Friends, whatever image you put in this love puzzle, that image gets divided into different pieces, then you have to solve that image in the right way.
This has to be done if you do not arrange the images with each other correctly and if you arrange the images but in the wrong way then you will not be able to solve the puzzle.

setTimeout(function() {
reloadPuzzle();
randomizeImage();
}, 1500);

Friends, the interesting thing about this puzzle is that if the user solves the puzzle correctly, then the puzzle automatically returns to its previous state, which you can see in the code given above.

Steps to Create Love Puzzle:-

Friends, we have divided the code of love puzzle into three parts, one is code index.html which will be used to create the structure of love puzzle, second is style.css in which love has been designed and the last file is script.js in this file the puzzle will be completely written. It will be made live so that the puzzle works and the user can enjoy it. Friends, these three files are very important, if you make the code wrong then your love puzzle will not work.

  1. First of all, create a folder in the computer which can be named Love Puzzle.
  2. Now open the created Love Puzzle folder in vs code. If you use any other code editor then open the folder in that.
  3. Now the code given below has to be uploaded in that file according to the name of the file.

Now use the following tags to link the files to each other. 👇👇

Friends, this tag is for linking the style.css file with the HTML file.
<link rel=”stylesheet” href=”style.css” />

Friends, this tag is for linking JavaScript, with the help of which you will be able to link the js file with HTML.
<script src=”main.js”></script>

HTML (index.html)

				
					



  
  
  <title>Document</title>
  



  <div id='puz_box'>
    <div id='puz'>
      <i class='first'></i>
      <i class='secon'></i>
      <i class='third'></i>
      <i class='fourt'></i>
      <i class='fifth'></i>
      <i class='sixth'></i>
      <i class='seven'></i>
      <i class='eight'></i>
      <i class='ninth'></i>
    </div>
    <div id='puzz'>
      <i class='third'></i>
      <i class='first'></i>
      <i class='secon'></i>
      <i class='fourt'></i>
      <i class='fifth'></i>
      <i class='sixth'></i>
      <i class='seven'></i>
      <i class='eight'></i>
      <i class='ninth'></i>
    </div>
  </div>
  <div id='clicks'>0</div>

  



				
			

CSS (Style.css)

				
					:root {
  --color: lightgray;
  --border-radius: 10px;
}

body {
  background: #efefef;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

#puz,
#puzz {
  position: absolute;
  border-radius: var(--border-radius) 0 var(--border-radius) 0;
  user-select: none;
}

#puz {
  width: 300px;
  height: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 3px dashed lightgray;
  overflow: hidden;
}

#puzz {
  left: 0;
  top: 0;
  border: 0;
}

#puz i {
  float: left;
  width: 100px;
  height: 100px;
  outline: 1px dashed lightgray;
}

#puzz i {
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--color);
  background-image: var(--image);
  background-size: 300px 300px;
  cursor: move;
  box-shadow: 0 0 10px rgba(0, 0, 0, .25);
}

.first {
  border-top-left-radius: var(--border-radius);
  background-position: left top !important;
}

.secon {
  background-position: center top !important;
}

.third {
  /*   border-top-right-radius:var(--border-radius); */
  background-position: right top !important;
}

.fourt {
  background-position: left center !important;
}

.fifth {
  background-position: center center !important;
}

.sixth {
  background-position: right center !important;
}

.seven {
  /*   border-bottom-left-radius:var(--border-radius); */
  background-position: left bottom !important;
}

.eight {
  background-position: center bottom !important;
}

.ninth {
  border-bottom-right-radius: var(--border-radius);
  background-position: right bottom !important;
}

.clicked {
  box-shadow: 0 0 0 4px gray !important;
}

.dropped {
  background: var(--color);
  background-image: var(--image);
  background-size: 300px 300px;
}

.done {
  opacity: 0;
  pointer-events: none;
}

.allDone {
  animation: allDone 1s linear forwards;
  border: 3px solid lightgray !important;
}

.allDone i {
  outline: 0 !important;
}

@keyframes allDone {
  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }
}

#clicks {
  font-size: 8px;
  font-family: monospace;
  position: absolute;
  bottom: 5px;
  right: 5px;
}
				
			

Javascript (Script.js)

				
					var images = ['https://images.unsplash.com/photo-1610624764045-5255643109c6?q=80&amp;w=1470&amp;auto=format&amp;fit=crop&amp;ixlib=rb-4.0.3&amp;ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D'];

var currentIndex = 0;
var totalClicks = 0;

function randomizeImage() {
  let root = document.documentElement;
  root.style.setProperty('--image', 'url(' + images[currentIndex] + ')');
  currentIndex++;
  if (currentIndex &gt;= images.length) {
    currentIndex = 0;
  }
  var puzzleItems = document.querySelectorAll('#puzz i');
  for (var i = 0; i &lt; puzzleItems.length; i++) {
    puzzleItems[i].style.left = Math.random() * (window.innerWidth - 100) + &#039;px&#039;;
    puzzleItems[i].style.top = Math.random() * (window.innerHeight - 100) + &#039;px&#039;;
  }
}

randomizeImage();

function reloadPuzzle() {
  var doneItems = document.querySelectorAll(&#039;.done&#039;);
  doneItems.forEach(function (element) {
    element.classList.toggle(&#039;done&#039;);
  });
  var droppedItems = document.querySelectorAll(&#039;.dropped&#039;);
  droppedItems.forEach(function (element) {
    element.classList.toggle(&#039;dropped&#039;);
  });
  var allDoneElement = document.querySelector(&#039;.allDone&#039;);
  allDoneElement.style = &#039;&#039;;
  allDoneElement.classList.toggle(&#039;allDone&#039;);
}

// mobile functionality
var puzzleItemsMobile = document.querySelectorAll(&#039;#puzz i&#039;);
puzzleItemsMobile.forEach(function (element) {
  element.addEventListener(&#039;mousedown&#039;, function () {
    totalClicks++;
    document.querySelector(&#039;#clicks&#039;).innerHTML = totalClicks;
  });
  element.addEventListener(&#039;click&#039;, function () {
    if (document.querySelector(&#039;.clicked&#039;)) {
      document.querySelector(&#039;.clicked&#039;).classList.toggle(&#039;clicked&#039;);
      element.classList.toggle(&#039;clicked&#039;);
    } else {
      element.classList.toggle(&#039;clicked&#039;);
    }
  });
});

var puzzleItemsDesktop = document.querySelectorAll(&#039;#puz i&#039;);
puzzleItemsDesktop.forEach(function (element) {
  element.addEventListener(&#039;click&#039;, function () {
    if (document.querySelector(&#039;.clicked&#039;)) {
      var clickedElement = document.querySelector(&#039;.clicked&#039;);
      if (clickedElement.classList.contains(element.classList)) {
        element.classList.add(&#039;dropped&#039;);
        clickedElement.classList.add(&#039;done&#039;);
        clickedElement.classList.toggle(&#039;clicked&#039;);

        if (document.querySelectorAll(&#039;.dropped&#039;).length == 9) {
          document.querySelector(&#039;#puz&#039;).classList.add(&#039;allDone&#039;);
          document.querySelector(&#039;#puz&#039;).style.border = &#039;none&#039;;
          document.querySelector(&#039;#puz&#039;).style.animation = &#039;allDone 1s linear forwards&#039;;

          setTimeout(function () {
            reloadPuzzle();
            randomizeImage();
          }, 1500);
        }
      }
    }
  });
});

// desktop drag and drop
function allowDrop(ev) {
  ev.preventDefault();
}

function drag(ev) {
  ev.dataTransfer.setData(&quot;text&quot;, ev.target.className);
}

function drop(ev) {
  ev.preventDefault();
  var data = ev.dataTransfer.getData(&quot;text&quot;);

  if (ev.target.className == data) {
    ev.target.classList.add(&#039;dropped&#039;);
    document.querySelector(&#039;.&#039; + data + &quot;[draggable=&#039;true&#039;]&quot;).classList.add(&#039;done&#039;);

    if (document.querySelectorAll(&#039;.dropped&#039;).length == 9) {
      document.querySelector(&#039;#puz&#039;).classList.add(&#039;allDone&#039;);
      document.querySelector(&#039;#puz&#039;).style.border = &#039;none&#039;;
      document.querySelector(&#039;#puz&#039;).style.animation = &#039;allDone 1s linear forwards&#039;;

      setTimeout(function () {
        reloadPuzzle();
        randomizeImage();
      }, 1500);
    }
  }
}
				
			

Complain Management using Python with a Graphical User Interface (GUI) Introduction: The Complain Management using Python program designed to manage complaints effectively …

COVID 19 Hospital Management Using Python [Django Framework] Introduction: The COVID-19 Hospital Management is a Python-based application that tracks web applications for Hospitals. …

Drawing Ganesha Using Python Turtle Graphics[Drawing Ganapati Using Python] Introduction In this blog post, we will learn how to draw Lord Ganesha …

Contact Management System in Python with a Graphical User Interface (GUI) Introduction: The Contact Management System is a Python-based application designed to …

Get Huge Discounts
More Python Projects