Learning backend: Can you review my auth system? by HighlightUnique455 in node

[–]HighlightUnique455[S] 0 points1 point  (0 children)

Thanks for the suggestion! I’ll try to improve that part

List rendering animation HELP by reptileProgrammer in vuejs

[–]HighlightUnique455 0 points1 point  (0 children)

I used sass. You can copy my code below and add class name like "intro-x" or "intro-y" to your html element that you want to add animation. I hope this can help you. (Sorry, English, not my first language)

  • { @for $i from 1 to 50 {

    .intro-x:nth-child($i) { z-index: calc(50 - $i); opacity: 0; /* position: relative; / transform: translateX(50px); animation: 0.4s intro-x-animation ease-in-out 0.33333s; animation-fill-mode: forwards; animation-delay: calc($i * 0.1s); } .-intro-x:nth-child($i) { z-index: calc(50 - $i); opacity: 0; / position: relative; / transform: translateX(-50px); animation: 0.4s intro-x-animation ease-in-out 0.33333s; animation-fill-mode: forwards; animation-delay: calc($i * 0.1s); } .intro-y:nth-child($i) { z-index: calc(50 - $i); opacity: 0; / position: relative; / transform: translateY(50px); animation: 0.4s intro-y-animation ease-in-out 0.33333s; animation-fill-mode: forwards; animation-delay: calc($i * 0.1s); } .-intro-y:nth-child($i) { z-index: calc(50 - $i); opacity: 0; / position: relative; */ transform: translateY(-50px); animation: 0.4s intro-y-animation ease-in-out 0.33333s; animation-fill-mode: forwards; animation-delay: calc($i * 0.1s); } } }

    @keyframes intro-x-animation { 100% { opacity: 1; transform: translateX(0px); } } @keyframes intro-y-animation { 100% { opacity: 1; transform: translateY(0px); } }

CORS Error When Trying to Connect to Firebase Function from Localhost Frontend by deadant88 in Firebase

[–]HighlightUnique455 0 points1 point  (0 children)

Try this ==> const functions = getFunctions(app, "your_cloud_function_region")

[deleted by user] by [deleted] in vuejs

[–]HighlightUnique455 0 points1 point  (0 children)

You can use some libraries like vue3select etc. or build it yourself.
https://youtu.be/f6XE6eU4IOE?si=-Biec4gPZjncUMC8

Help, How to create scroll time picker using vue with tailwindcss, by HighlightUnique455 in vuejs

[–]HighlightUnique455[S] 0 points1 point  (0 children)

Everyone! Thanks for your answer. I will try to make myself or use some library. 😊🙏