amyyalex / simple-contribution

This is a very simple project to help first-time contributors to easily participate in an open-source project.
https://amyyalex.github.io/simple-contribution/
MIT License
80 stars 244 forks source link

Improve banner design #23

Open amyyalex opened 9 months ago

amyyalex commented 9 months ago

The current banner in the project serves as a vital element but may benefit from enhancements to improve its visual appeal, messaging, or functionality. This task aims to elevate the banner's overall quality and effectiveness.

Tasks:

Acceptance Criteria:

thekain9 commented 9 months ago

Hi there! I would love to contribute to this project and bring my design skills to help refine the aesthetics of the banner. If you could assign me this project I would love to help!

amyyalex commented 9 months ago

Hi @thekain9 I appreciate your interest in contributing your design skills to refine the banner aesthetics. I'll definitely assign this project to you, and I'm excited to see your creative input and ideas.

thekain9 commented 9 months ago

Amazing thank you! :)

zealshah29 commented 8 months ago

Hi, so I came across this issue. I am currently looking forward to contribute to good first issues. I have experience in UI UX design, html and css. If the given issue is not closed yet and if there's any way I could help to contribute, do let me know.

Thanks, Zeal Shah

amyyalex commented 8 months ago

Hi @zealshah29 Nice! Sure, you can go on and pull out your creative. The banner currently have a simple animation but still open to being more refined. Can't wait to see what you come up with! xx

zealshah29 commented 8 months ago

Great, thanks :) Can you assign me this project?

adelanaofficial commented 7 months ago

Hello Amy, could you kindly assign this task to me?

Thank you!

zehor-l commented 4 months ago

Hello, added a simple hover effect to each span element to make them more interactive:

const boxContainer = document.getElementById('boxContainer');

// Enhancements: // 1. Added hover effect to elements // 2. Placeholder for responsive design

// Create 'infi' elements for (let set = 0; set < 2; set++) { const infiDiv = document.createElement('div'); infiDiv.classList.add('infi');

for (let i = 0; i <= 20; i++) {
    const span = document.createElement('span');
    span.style.setProperty('--i', i);
    infiDiv.appendChild(span);
}

boxContainer.appendChild(infiDiv);

}

// Add hover effect document.querySelectorAll('.infi span').forEach(span => { span.addEventListener('mouseenter', () => span.style.transform = 'scale(1.1)'); span.addEventListener('mouseleave', () => span.style.transform = 'scale(1)'); });

// Ensure responsiveness window.addEventListener('resize', () => { // Add responsive handling code here });

Silvia-Wachira commented 4 months ago

Hello I would love to work on this project

lauradowell commented 3 months ago

Hi! I would love to contribute to this, I have a design background. Could you assign this to me?