bl双性强迫侵犯h_国产在线观看人成激情视频_蜜芽188_被诱拐的少孩全彩啪啪漫画

CSS3+JavaScript如何實現炫酷呼吸效果

這篇文章給大家分享的是有關CSS3+JavaScript如何實現炫酷呼吸效果的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

創新互聯-專業網站定制、快速模板網站建設、高性價比通州網站開發、企業建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式通州網站制作公司更省心,省錢,快速模板網站建設找我們,業務覆蓋通州地區。費用合理售后完善,十年實體公司更值得信賴。

用css3動畫實現的一個簡單炫酷效果,最終的效果圖如下:

CSS3+JavaScript如何實現炫酷呼吸效果

頁面結構(index.html):

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
  <link rel="stylesheet" href="style.css">
</head>
<body>
  <h2>Relax And Breath</h2>
  <div class="container">
    <div class="circle"></div>
    <p id="text"></p>
    <div class="pointer-container">
      <div class="pointer"></div>
    </div>
    <div class="gradient-circle"></div>
  </div>
  <script src="script.js"></script>
</body>
</html>

script.js:

const container = document.querySelector('.container');
const text = document.querySelector('#text');

const totalTime = 7500;
const breathTime = (totalTime/5)*2; //呼吸的時間為3s
const holdTime = totalTime/5;    //保持呼吸的時間為1.5s
console.log(breathTime);

breathAnimation();    //一開始自執行breathAnimation函數
function breathAnimation(){
  text.innerHTML = 'Breath In';
  container.className = 'container grow';    //給container添加grow類,實現放大效果

  setTimeout(function(){
    text.innerHTML = 'Hold On';
    setTimeout(function(){
      text.innerHTML = 'Breath Out';
      container.className = 'container shrink';//給container添加shrink類,實現縮小效果
    },holdTime)
  },breathTime)
}

setInterval(breathAnimation,totalTime);    //重復執行

樣式(style.css):

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  background: url('./img/bg.jpg') no-repeat center center /cover;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/*注意設置margin為auto*/
.container{
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1);
  margin: auto;
}

/*使用圓錐漸變作為背景,寬高比.container稍大,同時z-index要設為-2,因為還有一層為.circle,最外層是文字*/
.gradient-circle{
  position: absolute;
  left: -10px;
  top: -10px;
  background: conic-gradient(
    #55b7a4 0%,
    #4ca493 40%,
    #fff 40%,
    #fff 60%,
    #336d62 60%,
    #2a5b52 100%
  );
  width: 320px;
  height: 320px;
  border-radius: 50%;
  z-index: -2;
}

/z-index為-1,為中間黑色的圓/
.circle{
  position: absolute;
  left: 0;
  top: 0;
  width: 300px;
  height: 300px;
  background-color: #010f1c;
  border-radius: 50%;
  z-index: -1;
}

/*.pointer-container是小球外面的容器,其高設置為190,是因為其中150為半徑,還有40為top-40,這樣就會繞著圓心轉,且不會換到里面來,注意transform-origin為中下方*/
.pointer-container{
  position: absolute;
  width: 20px;
  height: 190px;
  top: -40px;
  left: 140px;
  /* background-color: red; */
  transform-origin: bottom center;
  animation: rotate 7.5s linear forwards infinite;
}

/*小球*/
.pointer{
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
}

/*設置小球轉圈的效果*/
@keyframes rotate{
  from{
    transform: rotate(0deg);
  }to{
    transform: rotate(360deg);
  }
}
.container.grow{
  animation: grow 3s linear forwards;
}
.container.shrink{
  animation: shrink 2s linear forwards;
}
@keyframes grow{
  from{
    transform: scale(1)
  }to{
    transform: scale(1.2);
  }
}

@keyframes shrink{
  from{
    transform: scale(1.2)
  }to{
    transform: scale(1);
  }
}

如果.container的margin不設置為auto或者一個具體的值,就會造成下圖的效果,文字和圓擠在一塊:

CSS3+JavaScript如何實現炫酷呼吸效果

同時我把.pointer-container里面的 background-color: red; 添上就會更加理解為什么要把.pointer-container的高度設置為190px.另外如果不把transform-origin設置為bottom center它就會如圖中標注的默認點旋轉,這并不是我們想要的效果.

CSS3+JavaScript如何實現炫酷呼吸效果

還有個細節就是.shrink的動畫時間我設置成了兩秒,其實按照js里面的breath out這段時間應該為3s,但是為了從breath out到breath in有個緩沖的效果,就設置成了2s,不然breath out到breath in沒有一個過渡,會顯得突兀不好看.

感謝各位的閱讀!關于“CSS3+JavaScript如何實現炫酷呼吸效果”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

文章標題:CSS3+JavaScript如何實現炫酷呼吸效果
網站鏈接:http://vcdvsql.cn/article32/jhjspc.html

成都網站建設公司_創新互聯,為您提供網站改版網站策劃移動網站建設Google電子商務

廣告

聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯

h5響應式網站建設