Элемент сетки расширяет анимацию с помощью CSS - PullRequest
0 голосов
/ 19 января 2019

У меня есть следующее

setTimeout(function(){
var sections = document.querySelectorAll('section'), main = document.querySelector('.grid-container'), 
//section = sections[Math.floor(Math.random() * 3)];
section = sections[1];
section.classList.add('expand');
section.parentElement.classList.add('expand');
main.classList.add('expanding');
}, 2000);
*{
	box-sizing : border-box; 
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale; 
}

.grid-container {
  width:100%;
  height: 100vh;
  display:flex;
  border: 1px solid;
  flex-wrap: wrap;
  flex-direction: column;
}

.grid-row, .grid-container {
  
  overflow:hidden;
}

.grid-column, .grid-row {
  display: flex;
  transition: width .2s, height .2s, margin .2s, transform .2s;
}

.grid-column {
  width: inherit;
  height: inherit;
  align-items: center;
  justify-items: center;
}

.grid-column:nth-child(1) {
  background-color:green;
}

.grid-column:nth-child(2) {
  background-color:orange;
}
.grid-row:nth-child(2) .grid-column:nth-child(1) {
  background-color:violet;
}

.grid-row:nth-child(2) .grid-column:nth-child(2) {
  background-color:brown;
}

@media screen and (orientation: portrait) {
  .grid-row {
    width: 100%;
    height: 50%;
    flex-direction: column;
  }
  
  .grid-column {
    width: 100%;
    height: 50%;
  }
  
  .grid-row.expand .grid-column {
    transform: translateY(-50%);
  }
 
}

@media screen and (orientation: landscape) {
  .grid-row {
    width: 50%;
    height: 100%;
  }
  
  .grid-column {
    width: 50%;
    height: 100%;
  }
}

@media screen and (min-height: 500px) {
  .grid-row {
    height: 50%;
    width: 100%;
  }
}

.expanding .expand {
  width: 100% !important;
  height: 100% !important;
}
<main class="grid-container">
<div class="grid-row" data-index="1">
  <section class="grid-column" data-index="1">
    <article>
      <p>
      1
      </p>
    </article>
  </section>
  <section class="grid-column" data-index="2">
    <article>
      <p>
      2
      </p>
    </article>
  </section>
  </div>
  <div class="grid-row" data-index="2">
  <section class="grid-column" data-index="1">
    <article>
      <p>
      3
      </p>
    </article>
  </section>
  <section class="grid-column" data-index="2">
    <article>
      <p>
      4
      </p>
    </article>
  </section>
  </div>
</main>

, который я пытаюсь разработать, где "ячейки" в сетке, которые при расширении до полной области вида будут анимироваться, как если быэто «выталкивание» соседних элементов из поля зрения.

Я пытаюсь использовать комбинацию ширины, высоты и преобразований, чтобы дать соответствующую анимацию, но преобразования, кажется, дают некоторые неожиданные результаты ...

Есть ли способ сделать этоБЕЗ position:absolute или с как можно меньшим количеством javascript ??

1 Ответ

0 голосов
/ 19 января 2019

Вот пример, который, казалось бы, делает то, что вы хотите, с нуля, без JavaScript.Я использовал flexbox вместо grid, но этого можно добиться и с помощью grid.Я использовал :hover в качестве триггера:

body {
  padding: 15px;
  background-color: #999;
  margin: 0;
}

.grid>*:hover, 
.grid>*>*:hover {
  flex-grow: 3;
}

.grid>*>*:hover {
  box-shadow: 0 4px 5px -2px rgba(0, 0, 0, .2), 0 7px 10px 1px rgba(0, 0, 0, .14), 0 2px 16px 1px rgba(0, 0, 0, .12);
  z-index: 1;
  opacity: 1;
  font-size: 5rem;
}
.grid:hover>*:not(:hover) {
  flex-grow: 0;
  max-height: 0;
  overflow: hidden;
}
.grid>*,
.grid>*>* {
  transition: all .6s cubic-bezier(0.5, 0, 0.3, 1);
}

.grid {
  flex-direction: column;
  min-height: calc(100vh - 30px);
  box-sizing: border-box;
}

.grid,
.grid>* {
  display: flex;
  max-height: 100%;
}

.grid>* {
  flex-direction: row;
  margin: 0;
}

.grid>*,
.grid>*>* {
  flex-grow: 1;
}

.grid>*>* {
  margin: 0;
  z-index: 0;
  position: relative;
  background-color: #fff;
  outline: 1px solid #ddd;
  opacity: .95;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  font-size: 3rem;
  overflow: hidden;
}
<div class="grid">
  <div>
    <div>1</div>
    <div>2</div>
  </div>
  <div>
    <div>3</div>
    <div>4</div>
    <div>5</div>
    <div>6</div>
  </div>
  <div>
    <div>7</div>
    <div>8</div>
    <div>9</div>
  </div>
</div>

Вы можете поиграть с flex-grow, изменить анимацию или соотношение между наведенными и не наведенными элементами, но для этого вам необходимо определить требованиялучше, чем «кажется, дает некоторые неожиданные результаты» :

Очевидно, вы можете ограничить его до 2 + 2 элементов.Я просто хотел отметить, что он гибкий с точки зрения структуры.Вот пример, расширяющийся до полного по вертикали и горизонтали:

body {
  padding: 15px;
  background-color: #999;
  margin: 0;
}

.grid>*:hover, 
.grid>*>*:hover {
  flex-grow: 3;
}

.grid>*>*:hover {
  box-shadow: 0 4px 5px -2px rgba(0, 0, 0, .2), 0 7px 10px 1px rgba(0, 0, 0, .14), 0 2px 16px 1px rgba(0, 0, 0, .12);
  z-index: 1;
  opacity: 1;
  font-size: 5rem;
}
.grid:hover>*:not(:hover) {
  flex-grow: 0;
  max-height: 0;
  overflow: hidden;
}
.grid>*:hover>*:not(:hover) {
  flex-grow: 0;
  flex-basis: 0;
  overflow: hidden;
}
.grid>*,
.grid>*>* {
  transition: all .6s cubic-bezier(0.5, 0, 0.3, 1);
}

.grid {
  flex-direction: column;
  min-height: calc(100vh - 30px);
  box-sizing: border-box;
}

.grid,
.grid>* {
  display: flex;
  max-height: 100%;
}

.grid>* {
  flex-direction: row;
  margin: 0;
}

.grid>*,
.grid>*>* {
  flex-grow: 1;
}

.grid>*>* {
  margin: 0;
  z-index: 0;
  position: relative;
  background-color: #fff;
  outline: 1px solid #ddd;
  opacity: .95;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  font-size: 3rem;
  overflow: hidden;
  max-width: 100%;
  flex-basis: 100%;
  flex-grow: 0;
}
<div class="grid">
  <div>
    <div>1</div>
    <div>2</div>
  </div>
  <div>
    <div>3</div>
    <div>4</div>
  </div>
</div>

Как правило, я бы не стал использовать полную ширину / полную высоту, поскольку это затрудняет выбор другого элемента.

...