Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Simple cool improvements for the project! #453

Open
NQUARE opened this issue Mar 11, 2021 · 1 comment
Open

Simple cool improvements for the project! #453

NQUARE opened this issue Mar 11, 2021 · 1 comment
Labels
wontfix This will not be worked on

Comments

@NQUARE
Copy link

NQUARE commented Mar 11, 2021

Hi!
I want to suggest some interesting and easily implemented (already made by me) improvements.
And so the first thing is the smoothness of the animation of pressing the button, it seems to me that when you click on the button, there is no return, so I tried to add transition:. 08s; and it turned out very cool. It feels like the button is actually being pressed and the shadows are not changing.
Then I think that the transparency of 0.6 for a disabled element is a lot, you can confuse it with the usual one. You can set (opacity) at least 0.5.
The following also applies to the disabled button. Can be done (I already did) animation of shaking when you click on it.

.is-disabled:active {
	animation: .08s shaking;
}
@keyframes shaking {
	25% {
		transform: translate(-3px, -3px);
	}
	50% {
		transform: translate(-3px, 3px);
	}
	75% {
		transform: translate(3px, 3px);
	}
	100% {
		transform: translate(3px, -3px);
	}
}

You can do better in more frames.
I would also like to see a slider in the NES style. I can do it if you want.
Well, and many more new improvements and translations to a newer version of html. Again, I can do this if you pay attention to it.
Thank you, I hope my advice will help in improving the project.

@guastallaigor
Copy link
Member

Hello @NQUARE, thank you for your issue and all your suggestions.
To be honest with you, we are not working actively on this project for a while now.
I've been trying to maintain it from time to time, however I don't have access/authorization to accept new features or publish new releases.
So for now, I do apologize, but I don't think there's much we can do here.
Thank you again.

@guastallaigor guastallaigor added the wontfix This will not be worked on label May 14, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
wontfix This will not be worked on
Projects
None yet
Development

No branches or pull requests

2 participants