js+css实现ViewTransition过渡动画效果代码

代码语言:html

所属分类:布局界面

代码描述:js+css实现ViewTransition过渡动画效果代码

代码标签: js css ViewTransition 过渡 动画

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en" >

<head>
  <meta charset="UTF-8">
  

  
  
  
<style>
.box1 {
  width: 10rem;
  view-transition-name: box;
}

.box2 {
  float: none;
  width: 100%;
  view-transition-name: box;
}






:root {
  --color-primary: #da3654;
  --color-text: #000;
  --color-text-2: #3c4856c2;
}



html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html *,
html *::after,
html *::before {
  box-sizing: inherit;
}

body {
  margin: 0;
  font: 100%/1.6 'Poppins', sans-serif;
  background-color: #1b1b1b;
}

:is(h1, h2) {
  font-family: 'Recoleta', 'Poppins';
}

ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.container {
  max-width: min(90vw, 42rem);
  margin-inline: auto;
}

nav {
  text-align: center;
  padding: 2rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
  
  & a {
    color: #fff;
    text-decoration: none;
  }
}

.active {
  text-decoration: underline;
  text-underline-offset: 10px;
}

.page2 {
  display: none;
}

.card {
  color: #fff5;
  margin: 5rem auto;
}

.box {
  color: #fff;  
  padding: 2rem;
  border-radius: 4px;
  float: left;
  margin-right: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.box1 {
  background-image: linear-gradient(to right, #ff758c 0%, #ff7eb3 100%);
}

.box2 {
  background-image: linear-gradient(to top, #6a85b6 0%, #bac8e0 100%);
}

a {
  color: #ff7dab;
  text-decoration: none;
}

.page2 a {
  color: #6a85b6;
}
</style>

  
  
</head>

<body>
  <div class="container">
    <nav>
      <a href="/page1.html" class="active">Page 1</a>
      <a href="/page2.html">Page 2</a>
    </nav>

    <section class="page1">
      <div class="card">
        <div class="box box1">
          <h1>Box 1</h1>
        </div>
        <a target="_blank" href="">Check out my article on view transitions on the Bejamas blog!</a> Lorem ipsum dolor sit amet consectetur adipisicing elit. At ipsa excepturi, labore quia natus tempore ad unde necessitatibus, dolorem error mollitia praesentium dicta, doloremque id nihil vero quam eos? Sed eos tempore nostrum, quasi accusamus fuga inventore minima ab, culpa nihil facilis mol.........完整代码请登录后点击上方下载按钮下载查看

网友评论0