首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >我怎么才能让我的模糊动画每次都工作得更快呢?

我怎么才能让我的模糊动画每次都工作得更快呢?
EN

Stack Overflow用户
提问于 2019-05-21 02:37:56
回答 1查看 71关注 0票数 2

我试着模糊我所有的页面,当我点击一个按钮时显示一个“弹出表单”,这实际上是有效的,但动画在我第一次点击时真的很慢,所以我试着找到任何解决方案来解决这个问题

我在本地的wamp服务器上运行它,我尝试了很多浏览器,每次第一次点击似乎都很慢,我甚至尝试在线上传网站,这是相同的结果。

代码语言:javascript
复制
var vid = document.getElementById("bgvid");
vid.volume = 0.01;
var x = document.getElementById("formregister");
var container = document.getElementById('container');
var top_vid =
document.getElementById('top_vid')

function hideShow()
{
  if(x.style.display === "none")
  {
    x.style.display = "block";
    vid.classList.remove('noblur');
    top_vid.classList.remove('noblur');
    vid.className += " blur";
    top_vid.className += " blur";
  }
  else
  {
    x.style.display = "none";
    vid.className += " noblur";
    top_vid.className += " noblur";
    vid.classList.remove('blur');
    top_vid.classList.remove('blur');
  }
}
代码语言:javascript
复制
@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');
body{
  font-family: 'Montserrat', sans-serif;
  background-color: black;
}

.bg,
.bg-filter{
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
 }

.bg-filter{
  z-index:-99;
  opacity:0.2;
  background: -webkit-linear-gradient(rgba(49,224,247,1) 0%, rgba(90,77,184,1) 100%);
  background: -moz-linear-gradient(rgba(49,224,247,1) 0%, rgba(90,77,184,1) 100%);
  background: -o-linear-gradient(rgba(49,224,247,1) 0%, rgba(90,77,184,1) 100%);
  background: linear-gradient(rgba(49,224,247,1) 0%, rgba(90,77,184,1) 100%);
}

.top_vid{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.top_vid .title{
  font-family: 'Montserrat', sans-serif;
  margin-left: 3%;
  font-size:3.2em;
  color:#fff;
}

.start {
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
  border-radius: 4px;
  background-color: transparent;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 28px;
  cursor: pointer;
  margin-right: 3%;
}
.start:focus{
  outline:none;
}
.start span {
  cursor: pointer;
  position: relative;
  transition: 0.5s;

}
.start span:after {
  color: #31E0F7;
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}
.start:hover span {
  padding-right: 25px;
}
.start:hover span:after {
  opacity: 1;
  right: 0;
}
.registerform{
  align-items: center;
}
form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.blur {
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -ms-filter: blur(5px);
  -o-filter: blur(5px);
  filter: blur(5px);
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
}
.noblur {
  -webkit-filter: blur(0px);
  -moz-filter: blur(0px);
  -ms-filter: blur(0px);
  -o-filter: blur(0px);
  filter: blur(0px);
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
代码语言:javascript
复制
  <div id="container">

    <video autoplay loop poster class="bg" id="bgvid">
      <source src="videos/theforcebg5.mp4" type="video/mp4"></source>
    </video>

    <div class="bg-filter" id="bg-filter"></div>

    <div class="top_vid" id="top_vid">
      <h1 class="title">Moodyness</h1>
      <button class="start" onclick="hideShow()"><span>Let's move !</span></button>
    </div>

  </div>

  <div class="registerform" id="formregister" style="display: none;">

    <form action="#" method="post">
      <input type="email" placeholder="EMAIL" required></input>
      <input type="password" placeholder="PASSWORD" required></input>
      <input type="password" placeholder="REPEAT PASSWORD" required></input>

      <div class="check">
        <label for="checkbox">Acceptez vous les conditions d'utilisation ?</label>
        <input type="checkbox" id="checkbox" required></input>
      </div>

      <input type="submit" value="Okay !"></input>
    </form>

  </div>

完整的代码在这里https://codepen.io/anon/pen/pmWwxm

我希望动画在我们第一次启动网站的时候都是快速的,谢谢你!

EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/56226455

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档