सुन रहा है ना तू LYRICS IN HINDI
अपने करम की कर अदाएं.. यारा.. यारा.. यारा.. मुझको इरादे दे, कसमें दे, वादे दे मेरी दुआओं के इशारों को सहारे दे दिल को ठिकाने दे, नए बहाने दे ख़्वाबों की बारिशों को मौसम के पैमाने दे अपने करम की कर अदाएं कर दे इधर भी तू निगाहें [सुन रहा है ना तू, रो रहा हूँ मैं सुन रहा है ना तू, क्यूँ रो रहा हूँ मैं] मंजिलें रुसवा हैं, खोया है रास्ता आये ले जाए, इतनी सी इल्तेजा ये मेरी ज़मानत है तू मेरी अमानत है हाँ.. अपने करम की कर अदाएं कर दे इधर भी तू निगाहें सुन रहा है ना तू, रो रहा हूँ मैं सुन रहा है ना तू, क्यूँ रो रहा हूँ मैं वक़्त भी ठहरा है, कैसे क्यूँ ये हुआ काश तू ऐसे आये, जैसे कोई दुआ तू रूह की राहत है तू मेरी इबादत है.. अपने करम की कर अदाएं कर दे इधर भी तू निगाहें [सुन रहा है ना तू, रो रहा हूँ मैं सुन रहा है ना तू, क्यूँ रो रहा हूँ मैं..] यारा..

Added by

Ayushi

SHARE

Your email address will not be published. Required fields are marked *

ADVERTISEMENT

VIDEO

body { background-color: lightgreen; /* Smoothly transition the background color */ transition: background-color .5s; } .player { height: 95vh; display: flex; align-items: center; flex-direction: column; justify-content: center; } .details { display: flex; align-items: center; flex-direction: column; justify-content: center; margin-top: 25px; } .track-art { margin: 25px; height: 250px; width: 250px; background-image: url("https://images.pexels.com/photos/262034/pexels-photo-262034.jpeg?auto=compress&cs=tinysrgb&dpr=3&h=750&w=1260"); background-size: cover; border-radius: 15%; } .now-playing { font-size: 1rem; } .track-name { font-size: 3rem; } .track-artist { font-size: 1.5rem; } .buttons { display: flex; flex-direction: row; align-items: center; } .playpause-track, .prev-track, .next-track { padding: 25px; opacity: 0.8; /* Smoothly transition the opacity */ transition: opacity .2s; } .playpause-track:hover, .prev-track:hover, .next-track:hover { opacity: 1.0; } .slider_container { width: 100%; max-width: 400px; display: flex; justify-content: center; align-items: center; } /* Modify the appearance of the slider */ .seek_slider, .volume_slider { -webkit-appearance: none; -moz-appearance: none; appearance: none; height: 5px; background: black; opacity: 0.7; -webkit-transition: .2s; transition: opacity .2s; } /* Modify the appearance of the slider thumb */ .seek_slider::-webkit-slider-thumb, .volume_slider::-webkit-slider-thumb { -webkit-appearance: none; -moz-appearance: none; appearance: none; width: 15px; height: 15px; background: red; cursor: pointer; border-radius: 50%; } .seek_slider:hover, .volume_slider:hover { opacity: 1.0; } .seek_slider { width: 95%; } .volume_slider { width: 30%; } .current-time, .total-duration { padding: 10px; } i.fa-volume-down, i.fa-volume-up { padding: 10px; } i.fa-play-circle, i.fa-pause-circle, i.fa-step-forward, i.fa-step-backward { cursor: pointer; } let now_playing = document.querySelector(".now-playing"); let track_art = document.querySelector(".track-art"); let track_name = document.querySelector(".track-name"); let track_artist = document.querySelector(".track-artist"); let playpause_btn = document.querySelector(".playpause-track"); let next_btn = document.querySelector(".next-track"); let prev_btn = document.querySelector(".prev-track"); let seek_slider = document.querySelector(".seek_slider"); let volume_slider = document.querySelector(".volume_slider"); let curr_time = document.querySelector(".current-time"); let total_duration = document.querySelector(".total-duration"); let track_index = 0; let isPlaying = false; let updateTimer; // Create new audio element let curr_track = document.createElement('audio'); // Define the tracks that have to be played let track_list = [ { name: "Ae Dil Hai Mushkil", artist: "Arijit Singh", image: "https://vtnqohy1mu19boar74vteq-on.drv.tw/song-images/meri-tum-ho.jpg", path: "https://vtnqohy1mu19boar74vteq-on.drv.tw/songs/meri-tum-ho.mp3" }, ]; function loadTrack(track_index) { clearInterval(updateTimer); resetValues(); // Load a new track curr_track.src = track_list[track_index].path; curr_track.load(); // Update details of the track track_art.style.backgroundImage = "url(" + track_list[track_index].image + ")"; track_name.textContent = track_list[track_index].name; track_artist.textContent = track_list[track_index].artist; now_playing.textContent = "PLAYING "; // Set an interval of 1000 milliseconds for updating the seek slider updateTimer = setInterval(seekUpdate, 1000); // Move to the next track if the current one finishes playing curr_track.addEventListener("ended", nextTrack); // Apply a random background color random_bg_color(); } function random_bg_color() { // Get a random number between 64 to 256 (for getting lighter colors) let red = Math.floor(Math.random() * 256) + 64; let green = Math.floor(Math.random() * 256) + 64; let blue = Math.floor(Math.random() * 256) + 64; // Construct a color withe the given values let bgColor = "rgb(" + red + "," + green + "," + blue + ")"; // Set the background to that color document.body.style.background = bgColor; } // Reset Values function resetValues() { curr_time.textContent = "00:00"; total_duration.textContent = "00:00"; seek_slider.value = 0; } function playpauseTrack() { if (!isPlaying) playTrack(); else pauseTrack(); } function playTrack() { curr_track.play(); isPlaying = true; // Replace icon with the pause icon playpause_btn.innerHTML = ''; } function pauseTrack() { curr_track.pause(); isPlaying = false; // Replace icon with the play icon playpause_btn.innerHTML = '';; } function nextTrack() { if (track_index 0) track_index -= 1; else track_index = track_list.length; loadTrack(track_index); playTrack(); } function seekTo() { seekto = curr_track.duration * (seek_slider.value / 100); curr_track.currentTime = seekto; } function setVolume() { curr_track.volume = volume_slider.value / 100; } function seekUpdate() { let seekPosition = 0; // Check if the current track duration is a legible number if (!isNaN(curr_track.duration)) { seekPosition = curr_track.currentTime * (100 / curr_track.duration); seek_slider.value = seekPosition; // Calculate the time left and the total duration let currentMinutes = Math.floor(curr_track.currentTime / 60); let currentSeconds = Math.floor(curr_track.currentTime - currentMinutes * 60); let durationMinutes = Math.floor(curr_track.duration / 60); let durationSeconds = Math.floor(curr_track.duration - durationMinutes * 60); // Adding a zero to the single digit time values if (currentSeconds < 10) { currentSeconds = "0" + currentSeconds; } if (durationSeconds < 10) { durationSeconds = "0" + durationSeconds; } if (currentMinutes < 10) { currentMinutes = "0" + currentMinutes; } if (durationMinutes < 10) { durationMinutes = "0" + durationMinutes; } curr_time.textContent = currentMinutes + ":" + currentSeconds; total_duration.textContent = durationMinutes + ":" + durationSeconds; } } // Load the first track in the tracklist loadTrack(track_index);