From fc5238e9cc641263d196b05c20b09b8b2c1440fe Mon Sep 17 00:00:00 2001 From: Ansh Sharma Date: Mon, 14 Oct 2024 00:55:17 +0530 Subject: [PATCH] Update index.html I have updated background colour, font colour, box-shadow, button, underlining, colour of line, box colour, floating image colour.Tried to make your site look more interesting and interactive. --- index.html | 309 +++++++++++++++++++++++++++-------------------------- 1 file changed, 159 insertions(+), 150 deletions(-) diff --git a/index.html b/index.html index d0b7794..952ad61 100644 --- a/index.html +++ b/index.html @@ -1,131 +1,132 @@ - - -Exif Images Edition - + @keyframes color-change { + 0% { + color: #007bff; + } + 100% { + color: #ff6347; + } + } + .floating-image { + position: fixed; + bottom: 20px; + right: 20px; + width: 100px; + height: 100px; + background-color: #f8f8f8; + border-radius: 50%; + box-shadow: 0 0 10px rgba(255, 255, 255, 0.2); + overflow: hidden; + } + .floating-image img { + width: 100%; + height: 100%; + object-fit: cover; + } + @media (max-width: 600px) { + .container { + padding: 15px; + } + .logo { + max-height: 150px; + } + .animated-text { + font-size: 20px; + } + } + @@ -138,48 +139,42 @@

Features


- - +

Supported Formats


- - - +

Installation and Usage Instructions


- -
    -
  1. Add .jpg to subfolder ./images from where the script is stored.
  2. -
  3. Note: Most social media sites strip exif data from uploaded photos.
  4. -
+
    +
  1. Add .jpg to subfolder ./images from where the script is stored.
  2. +
  3. Note: Most social media sites strip exif data from uploaded photos.
  4. +

Prerequisites


- -
  • Install Python3 - -
  • -
  • Install Pillow (Pillow will not work if you have PIL installed): -
    python3 -m pip install --upgrade pip
    +  
  • Install Python3
  • +
      +
    • Debian, Ubuntu, Etc: sudo apt-get install python3
    • +
    • Fedora, Oracle, Red Hat, etc: su -c "yum install python"
    • +
    • Windows: Python for Windows
    • +
    +
  • +
  • Install Pillow (Pillow will not work if you have PIL installed): +
    python3 -m pip install --upgrade pip
     python3 -m pip install --upgrade Pillow
     pip install Pillow moviepy
     pip install eyed3
    -
  • - +

    Installation


    @@ -207,7 +202,8 @@

    πŸ“ΈπŸŽ₯πŸ” Direct Use

    Unearth the metadata magic with style!

    Copy and paste this:

    -
    +
    +
    git clone https://github.com/AryanVBW/Exif.git
     cd Exif
    @@ -236,4 +232,17 @@ 

    Use these commands to print jpg output directly on terminal or PowerShell: function copyToClipboard(elementId) { var copyText = document.querySelector(elementId).innerText; - navigator.clip + navigator.clipboard.writeText(copyText).then(function() { + var button = document.querySelector('.copy-btn'); + button.classList.add('copied'); + setTimeout(function() { + button.classList.remove('copied'); + }, 2000); + }, function(err) { + console.error('Could not copy text: ', err); + }); + } + + + +