Skip to main content
Some references with JavaScript

Template Literals

#JS
const name = "kaito";
var message = `Hi I'm ${name}`
console.log(message);

Position the Text Animation

<!DOCTYPE html>
<html>
    <head>
        <title>Page Title</title>
    </head>
    <body>
    <script>
  function init(){
  img=document.getElementById('mytext');
  img.style.position='relative';
  img.style.left='0px';
  img.style.top='10';
}
  function right(){
  img.style.left=parseInt(img.style.left)+10+'px';
}
window.onload=init;
    </script>
    <form>
  <h1 id="mytext">This is my text</h1>
  <input type="button" onclick="right()" value="Go to left side">
</form>
 
    </body>
</html>

Comments

Popular posts from this blog

Facebook Cracker v1.0

Facebook Cracker v1.0 - is an open source Facebook Hacking tool that launches an attack by guessing your friends password. How to Install ~ First download termux on playstore. Commands ~ $ pkg install python2 git $ git clone https://github.com/MrKaitoX/FB-Cracker $ pip2 install -r requirements.txt $ cd FB-Cracker $ python2 fb-cracker.py Video Demo ~ https://www.youtube.com/watch?v=1kSinIJjHUo&t=55s Features ~  - Crack from friends  - Crack from Groups  - Dump group Id's DISCLAIMER: This tool Does not Promote or encourage Any Illegal activities, all contents provided by EDUCATIONAL PURPOSE only.