overflow: hidden;
.rotate(-45deg)
и увидите, что объект на оси Y находится в нулевой точке. WTF? portfolio__inner
обозначьте центр, вращайте объект типа как колесо – центр всегда на месте. Я обозначил центр с помощью transform-origin: center center
, однако в данном случае это не работает. import { gsap } from "gsap";
const books = document.querySelectorAll(".book");
const allOrganiser = document.getElementById("all-organiser");
const allCup = document.getElementById("all-cup");
const tl = gsap.timeline();
const propsBooks = {
y: -100,
stagger: 0.2,
ease: "power0"
}
if (navigator.userAgent.includes('Firefox')) {
propsBooks.opacity = 0;
} else {
propsBooks.filter = "opacity(0)";
}
tl.from(books, propsBooks) // , "+=2"
.from(allOrganiser, {
duration: 0.6,
x: -50,
autoAlpha: 0,
ease: "power1.out"
})
.from(
allCup,
{
duration: 0.6,
x: 200,
autoAlpha: 0,
ease: "power1.out"
});
book
некоректно возвращается в первоначальное положение хотя я прописал transform-origin: 100% 100%;
?blur
и input
как-то вернуть логическое значение корректно ли заполнено поле. Такого свойства у объекта mask я не нашёл. Зато нашёл unmaskedValue
. Ну и дальше типа такого:phone.addEventListener('blur', (e) => {
if(mask.unmaskedValue.length !== 10) {
placeholder.classList.remove("phMove");
}
});
opacity
, то кнопка будет недоступно.div.message
не происходит плавного исчезновения, ведь именно ему присвоено свойство transition: opacity 2s ease-in-out;
? git reset --hard HEAD^
для мастера и снова замёржить с веткой фичи. Вот и всё.
Зачем пытаться изменить коммит, который уже слит?
Завершить слияние git merge --continue
PS D:\OSPanel\domains\my-app> git merge --continue
fatal: There is no merge in progress (MERGE_HEAD missing).
Либо отказаться от слияния и всё отменить git merge --abort
PS D:\OSPanel\domains\my-app> git merge --abort
fatal: There is no merge to abort (MERGE_HEAD missing).
PS D:\OSPanel\domains\my-app> git merge score-effects
CONFLICT (content): Merge conflict in assets/src/style/_page.scss
Automatic merge failed; fix conflicts and then commit the result.
PS D:\OSPanel\domains\my-app> git merge --continue
error: Committing is not possible because you have unmerged files.
hint: Fix them up in the work tree, and then use 'git add/rm <file>'
hint: as appropriate to mark resolution and make a commit.
fatal: Exiting because of an unresolved conflict.
U assets/src/style/_page.scss
PS D:\OSPanel\domains\my-app> git status
On branch main
Your branch is ahead of 'origin/main' by 1 commit.
(use "git push" to publish your local commits)
(fix conflicts and run "git commit")
(use "git merge --abort" to abort the merge)
Unmerged paths:
both modified: assets/src/style/_page.scss
no changes added to commit (use "git add" and/or "git commit -a")
PS D:\OSPanel\domains\my-app> git branch
* main
many-changes
santa-untimely-move-fix
score-effects
PS D:\OSPanel\domains\my-app> git status
On branch main
Your branch is ahead of 'origin/main' by 1 commit.
(use "git push" to publish your local commits)
(use "git merge --abort" to abort the merge)
Unmerged paths:
(use "git add <file>..." to mark resolution)
both modified: assets/src/style/_page.scss
no changes added to commit (use "git add" and/or "git commit -a")
PS D:\OSPanel\domains\my-app> git merge --abort
PS D:\OSPanel\domains\my-app> git status
On branch main
Your branch is ahead of 'origin/main' by 1 commit.
(use "git push" to publish your local commits)
nothing to commit, working tree clean
PS D:\OSPanel\domains\my-app>
git merge --continue
?
event.preventDefault();
Точняк. Не сообразил ) И
overflow
вообще не нужно менять.