-
Notifications
You must be signed in to change notification settings - Fork 654
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
Добавляет рецепт контейнера с горизонтальным скроллом и динамическими тенями #5480
base: main
Are you sure you want to change the base?
Conversation
@solarrust держи демку, как обещал в ишью. Надеюсь кто-то сможет нормально оформить. |
if (scrollLeft > 10) { | ||
shadowLeft.classList.remove('scroll-shadow__shadow--hide'); | ||
} else { | ||
shadowLeft.classList.add('scroll-shadow__shadow--hide'); | ||
} | ||
|
||
if (scrollLeft < maxScrollLeft - 10) { | ||
shadowRight.classList.remove('scroll-shadow__shadow--hide'); | ||
} else { | ||
shadowRight.classList.add('scroll-shadow__shadow--hide'); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
можно упростить:
shadowLeft.classList.toggle('scroll-shadow__shadow--hide', scrollLeft <= 10);
shadowRight.classList.toggle('scroll-shadow__shadow--hide', scrollLeft >= maxScrollLeft - 10);
@skorobaeus давай, пожалуйста, докрутим эту демку и тогда я напишу к ней рецепт 🙏 |
ПРОСТИТЕ ХРИСТА РАДИ, меня присыпало уведомлениями и я пропустила этот ПР.
Я покрасила и вынесла СВГшную собаку на свет :) |
Превью контента из 81bcfcb опубликовано. |
Описание
Добавил только демо, чтобы в дальнейшем кто-то смог дописать статью, т.к. не имею времени на оформление текста.
Функционал готов, наверное вам придётся подправить ещё и цвета демо, чтобы смотрелось лучше.
Closes #4299
Чек-лист
/css/color/
,/tools/json/
,/tools/gulp/#kak-ponyat
)images/example.png
,demos/example/
,../demos/example/
)