(轉)利用 SVG 和 CSS3 實現有趣的邊框動畫

 

目錄css

 

SVG 學習<一>基礎圖形及線段html

 

SVG 學習<二>進階 SVG世界,視野,視窗 stroke屬性 svg分組web

 

SVG 學習<三>漸變segmentfault

 

SVG 學習<四> 基礎API瀏覽器

 

SVG 學習<五> SVG動畫svg

 

SVG 學習<六> SVG的transformpost

 

SVG 學習<七> SVG的路徑——path(1)直線命令、弧線命令學習

 

SVG 學習<八> SVG的路徑——path(2)貝塞爾曲線命令、光滑貝塞爾曲線命令動畫

 

(轉)利用 SVG 和 CSS3 實現有趣的邊框動畫網站

 

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

 

原文地址

今天咱們來探索一下Carl Philipe Brenner的網站上一個微妙而有趣的動畫效果。當鼠標通過網格元素時,會有一個微妙的動畫發生——網格元素變得透明,每條邊有個順時針的動畫,創造了很是好的效果。這種效果是經過JS給span標籤的寬或者高作了動畫。咱們待會會用SVG和CSS漸變來完成。注意,這個技術仍是實驗性的。

首先,讓咱們來看看基本的概念,而後咱們會朝着這個方向努力。

請注意,咱們將在SVG上使用CSS過渡,可能沒法獲得全部瀏覽器的支持。

乍眼一看可能不明白這個效果是怎麼完成的。咱們先仔細看看上面的邊就會發現,白色的邊的寬度不斷從右邊往左邊延伸,而一條稍微延時的邊緊跟着一塊兒移動。每條邊都有這樣的作法。看起來就像上面的邊通過拐角移動到了左邊,並以此類推。

不用SVG也能完成這樣的效果,甚至只用僞元素。可是咱們想探索一下怎樣用CSS而不是JavaScript來控制SVG。

如今,來思考一下要怎麼建立出這樣的效果。咱們能夠改變矩形的troke-dashoffset或者直接畫線。咱們嘗試不用JavaScript的解決方案。咱們發現,CSS過渡stroke-dashoffset 和 stroke-dasharray的值會觸發不少BUG。因此咱們要嘗試不一樣的解決方案,利用線條和它們的動畫,這在CSS裏很容易理解和實現。這也給咱們更多機會去探索不一樣的動畫效果。

咱們將要使用的線的特別之處是,它們在這個動畫裏將有三種狀態。它們是方盒邊長的三倍,其中中間一截是與邊等長的間隙。咱們將經過設置stroke-dashoffset的值來實現與方盒的邊等長。如今,這個動畫實現的關鍵在於線的位置轉換:

SVG與方盒大小一致,就不會看到超出虛線的部分。

咱們先完成第一條線:

<div>
    <svg width="200" height="200">
        <line x1="0" y1="0" x2="600" y2="0" />
    </svg>
</div>

這個div長寬20px,和SVG同樣。把SVG位置設爲absolute,線寬度爲10,stroke-dasharray爲200。

div {
    width: 200px;
    height: 200px;
    position: relative;
    overflow: hidden;
    background: #ddd;
}

svg {
    position: absolute;
    top: 0;
    left: 0;
}

svg line {
    stroke-width: 10;
    stroke: #000;
    fill: none;
    stroke-dasharray: 200;
    -webkit-transition: -webkit-transform .6s ease-out;
    transition: transform .6s ease-out;
}

div:hover svg line {
    -webkit-transform: translateX(-400px);
    transform: translateX(-400px);
}

當數鼠標懸浮在div上時,線也有一個過渡。咱們要把線移動到它的三分之二處,因此要在x軸上移動到-400px處,你能夠看看這個效果。由於translation不能在這裏用百分比作單位,因此用px。

接着添加其他三條線,gif效果:

咱們須要實現如下效果:線的第一部分移出方盒後,旁邊的線的最後一部分移動進來,,這將傳進直線在轉角處轉彎的假象,

來看看座標系的定義:

左邊的線的座標是(0,200) 到 (0,-400),底部的是(200,200) 到 (-400,200),右邊的是right one (200,0) 到 (200,600):

<div>
    <svg width="200" height="200">
        <line class="top" x1="0" y1="0" x2="600" y2="0"/>
        <line class="left" x1="0" y1="200" x2="0" y2="-400"/>
        <line class="bottom" x1="200" y1="200" x2="-400" y2="200"/>
        <line class="right" x1="200" y1="0" x2="200" y2="600"/>
    </svg>
</div>

給每條線加上不一樣的hover效果:

div:hover svg line.top {
  -webkit-transform: translateX(-400px);
  transform: translateX(-400px);
}

div:hover svg line.bottom {
  -webkit-transform: translateX(400px);
  transform: translateX(400px);
}

div:hover svg line.left {
  -webkit-transform: translateY(400px);
  transform: translateY(400px);
}

div:hover svg line.right {
  -webkit-transform: translateY(-400px);
  transform: translateY(-400px);
}

看看如今的效果

如今方盒大小改成300 x 460,再給它添加一些內容:

<div class="box">
    <svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%">
        <line class="top" x1="0" y1="0" x2="900" y2="0"/>
        <line class="left" x1="0" y1="460" x2="0" y2="-920"/>
        <line class="bottom" x1="300" y1="460" x2="-600" y2="460"/>
        <line class="right" x1="300" y1="0" x2="300" y2="1380"/>
    </svg>
    <h3>D</h3>
    <span>2012</span>
    <span>Broccoli, Asparagus, Curry</span>
</div>

爲了實現Carl Philipe Brenner的網站上的效果,咱們還要添加顏色過渡效果、盒子陰影等:

.box {
    width: 300px;
    height: 460px;
    position: relative;
    background: rgba(255,255,255,1);
    display: inline-block;
    margin: 0 10px;
    cursor: pointer;
    color: #2c3e50;
    box-shadow: inset 0 0 0 3px #2c3e50;
    -webkit-transition: background 0.4s 0.5s;
    transition: background 0.4s 0.5s;
}

.box:hover {
    background: rgba(255,255,255,0);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

給文字加上樣式:

.box h3 {
    font-family: "Ruthie", cursive;
    font-size: 180px;
    line-height: 370px;
    margin: 0;
    font-weight: 400;
    width: 100%;
}

.box span {
    display: block;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    padding: 5px;
}

.box h3,
.box span {
    -webkit-transition: color 0.4s 0.5s;
    transition: color 0.4s 0.5s;
}

.box:hover h3,
.box:hover span {
    color: #fff;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

給SVG和線條添加樣式:

.box svg {
    position: absolute;
    top: 0;
    left: 0;
}

.box svg line {
    stroke-width: 3;
    stroke: #ecf0f1;
    fill: none;
    -webkit-transition: all .8s ease-in-out;
    transition: all .8s ease-in-out;
}

給線的過渡加上延時:

.box:hover svg line {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

以前咱們定義的stroke-dasharray只有一個值,可是如今要因尺寸變化而修改

.box svg line.top,
.box svg line.bottom {
    stroke-dasharray: 330 240; 
}

.box svg line.left,
.box svg line.right {
    stroke-dasharray: 490 400;
}

若是你嘗試這些值,你就能看到這些線條不一樣的顯示效果。

最後,咱們要個hover過渡設置相應的值。由於如今元素是300px寬,因此水平線條改成900px,豎線同理改變:

.box:hover svg line.top {
    -webkit-transform: translateX(-600px);
    transform: translateX(-600px);
}

.box:hover svg line.bottom {
    -webkit-transform: translateX(600px);
    transform: translateX(600px);
}

.box:hover svg line.left {
    -webkit-transform: translateY(920px);
    transform: translateY(920px);
}

.box:hover svg line.right {
    -webkit-transform: translateY(-920px);
    transform: translateY(-920px);
}

大功告成。但願能經過這些效果激發你的創意,實現更多的效果~

演示 | 下載

相關文章
相關標籤/搜索