Welcome to Code Forum!

Join a community that supports you and your coding journey from day one. We strive to be a friendly, supportive community that empowers everyone to be better developers. By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Search results

  1. H

    How do I remove my info from: fastpeoplesearch.io?

    Is there anyone on here able to help with this? The form is broken and it doesn’t work. Remove My Info | FastPeopleSearch Adding the link to the form does not work. I did it correctly, I know that. Adding the link is not working. It is Broken. That functionality. This is their email...
  2. H

    .store / .shop, Which should be used for an e-commerce store?

    What does everyone think?
  3. H

    Can someone replicate this exact animation that is on this website?

    The lines that streak across the screen. Podcast Charts Can someone share with me the exact code? or maybe place it in a jsfiddle? JSFiddle - Code Playground
  4. H

    JavaScript Could anyone suggest some improvements for this?

    Can someone show me a way or ways on how this can be improved? How the code works: heart fades in, curtain goes up, exit button fades in. Click the exit button, heart fades in, curtain goes up, exit button fades in. https://jsfiddle.net/zmt3sb94/ window.onload = function() { const containerA...
  5. H

    JavaScript Clicking run in jsfiddle: The heart shifts from the right side to the left side. This movement is clearly observable

    https://jsfiddle.net/ncr35p0u/1/ Are you able to explain what is occurring here, and is there a way to fix that? Press Run inside the fiddle. First I see this: Then Press Run: I see this then:
  6. H

    JavaScript Line longer than 80 characters

    I need something that will work inside jslint. https://www.jslint.com/ function resetPage() { showContainer(".video-containerB", ".video-containerB .spinner", ".exitB"); }
  7. H

    Recreating Spotify equalizer inside a jsfiddle

    I don’t know the rest of the code. I was just wondering, what the rest of the code was. How it was created. Edit fiddle - JSFiddle - Code Playground <svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M3.99902...
  8. H

    JavaScript When I tap one of the buttons via mobile, there is a white flash, how do I disable or remove that?

    Does anyone on here know what I am referring to? https://jsfiddle.net/xmdq14a2/1/ 1 To reproduce, tap one of the buttons on via a mobile device. I think it may be this? :active How would I disable it from occurring when tapping a button? What would I put inside here? button:active{ }...
  9. H

    JavaScript Seeking Assistance to Resolve 6 JSLint Warnings in Code

    I am needing help figuring out how to fix 6 jlsint warnings in the code. Code: Edit fiddle - JSFiddle - Code Playground const button = document.createElement("button"); button.className = station.buttonClass; button.textContent = station.title...
  10. H

    Buttons are not staying centered.

    It should not start out looking like this: or looking like this: code: Edit fiddle - JSFiddle - Code Playground .buttonContainerB { display: flex; flex-wrap: wrap; /*justify-content: center;*/ align-content: center; max-width: 569px; gap: 10px; } Goes from this: Which is...
  11. H

    Grid using media queries to collapse buttons from 3 to 2 to 1

    code: Edit fiddle - JSFiddle - Code Playground The buttons are not collapsing from 3 to 2 to 1. I don’t understand why it is not working. How do I get it to work? @media (max-width: 536px) { .buttonContainerC { grid-template-columns: repeat(2, 183px); } } @media (max-width: 172px)...
  12. H

    JavaScript Click on any of the blue video buttons.

    This is giving me an error for reasons unbeknown to me: Why is this giving me an error? Edit fiddle - JSFiddle - Code Playground I do not see any mistakes in here. <footer class="my-footer hide"> modal.querySelector(".my-footer").classList.add("hide")...
  13. H

    How do I fix the code where the curtain doesn't open?

    Would I be writing the css differently? css: .hide+.curtain-containerC .curtain-leftC { transform: translateX(-100%); } .hide+.curtain-containerC .curtain-rightC { transform: translateX(100%); } curtain opens: Edit fiddle - JSFiddle - Code Playground <div class="curtain-containerC">...
  14. H

    After .exitD is clicked, which should be hidden?

    .outer-containerA or .containerPageB? My logical guess would be <div class="outer-containerA hide"> Am I wrong? <button class="exitD exit" type="button" title="Exit" aria-label="Close"></button> <div class="outer-containerA hide"> <div class="containerPageA"> <div...
  15. H

    JavaScript How do I break this line into 2 lines?

    This line is longer than 80 characters: src: "https://stream.synthwaveradio.eu/listen/synthwaveradio.eu/radio.mp3", How do I break it into 2 lines? { src: "https://stream.synthwaveradio.eu/listen/synthwaveradio.eu/radio.mp3", title: "Synthwave Radio" }, {
  16. H

    JavaScript Where should const playerManager be placed within the js code?

    Code Edit fiddle - JSFiddle - Code Playground Where should I place this function within the javascript? const playerManager = (function makePlayerManager() { function removePlayer() { videoPlayer.players.forEach(function(player) { const playerElement = player.getIframe(); if (playerElement) {...
  17. H

    JavaScript Transition doesn’t cease after clicking the close button

    Click on one of the blue buttons 2 times. The same button. Clicking the close button should keep the curtain removed. Edit fiddle - JSFiddle - Code Playground You will notice that, the curtain is still going up when clicked on a 2nd time. What am I doing wrong or forgetting to do? I am...
  18. H

    How does this become a square instead of a circle?

    How do I change this image to be a square? Edit fiddle - JSFiddle - Code Playground .curtain:before { content: ""; position: absolute; left: 0; right: 0; top: 0; bottom: 0; background: blue; -webkit-mask-image: radial-gradient(circle, transparent 0% 35%, black 35%); mask-image...
  19. H

    How do I have videos fade in on the screen instead of popping up?

    Click the first 2 exit buttons you see on the screen: Edit fiddle - JSFiddle - Code Playground Where you are taken to this screen: When you get to there, instead of the videos just popping up, how do you have them fade in?
  20. H

    JavaScript Trying to fix: player.getPlayerState is not a function

    First click the exit button where you get up to the screen where it says: ButtonA ButtonB ButtonC Code 1) https://jsfiddle.net/fw061qkL/2/ Uses this: function removePlayer() { videoPlayer.players.forEach(function(player) { // Check if the player is currently playing a video const...
Back
Top Bottom