- opacity 0, тоесть что-бы элемент исчез, но само исчезновение начинается с самого начала
Из-за чего такое может быть ?
Если выставить к примеру в других %, тоже самое получается
Нужен код, так сложно понять
.blue-round-2 { width: 100px; height: 100px; /* margin-top: -100px; margin-left: -450px; */ position: relative; bottom: 100px; left: 510px; background-color: skyblue; border-radius: 50%; animation-name: blue-circle-2; animation-duration: 2s; animation-delay: 0s; animation-iteration-count: 1; animation-fill-mode: forwards; animation-timing-function: linear; margin-left: 50%; } @keyframes blue-circle-2 { 0% { } 50% { margin-left: 50%; } 75% { margin-left: 75%; } /* 90% { display: none; visibility: none; opacity: 0; } */ 100% { display: none; visibility: none; opacity: 0; } }
Обсуждают сегодня