Giter VIP home page Giter VIP logo

Comments (6)

adam-binks avatar adam-binks commented on May 25, 2024 1

I've prepared a demo in CodeSandbox so you can try it yourself:
https://codesandbox.io/s/yqp02vlo0z

Hi 👋! It looks like this CodeSandbox is no longer available @thedevelobear, could you post a code snippet in this issue for future users (like me!)?

from react-rewards.

amamenko avatar amamenko commented on May 25, 2024 1

I faced this issue myself. Since react-rewards doesn't allow you to set a class name on the container object, I had to rely on the ref itself. The ref has a "container" key which has a value of the full reward container. This isn't defined in the RewardElement type exported by this package, so I ended up creating a new interface extending it as such:

export interface FullRewardElement extends RewardElement {
  container?: HTMLElement;
}

Then I set some conditional styles on the ref.current object as follows:

  if (ref.current.container) {
        ref.current.container.style.width = "32rem";
        ref.current.container.style.height = "100vh";
        ref.current.container.style.position = "fixed";
        ref.current.container.style.display = "flex";
        ref.current.container.style.alignItems = "center";
        ref.current.container.style.justifyContent = "center";
        ref.current.container.style.zIndex = "999999999";
        ref.current.container.style.overflow = "hidden";
      }

from react-rewards.

thedevelobear avatar thedevelobear commented on May 25, 2024

Hey! That's right. I didn't limit the animation height because someone may want to make the confetti visible during scroll. You can limit the height by setting the container to position: 'relative' and defining its height.

I've prepared a demo in CodeSandbox so you can try it yourself:
https://codesandbox.io/s/yqp02vlo0z

from react-rewards.

johniak avatar johniak commented on May 25, 2024

So I think you can fix it on demo, because you can se that on demo scroll bars are showing and disappearing

from react-rewards.

thedevelobear avatar thedevelobear commented on May 25, 2024

Thanks for the feedback! 👊I fixed the demo, it should look ok now.

from react-rewards.

iliatapazukk avatar iliatapazukk commented on May 25, 2024

@thedevelobear same question, could you post a code snippet in this issue?

from react-rewards.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.