国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

fab 菜單實現之前傳-鐘表表盤

番茄西紅柿 / 3360人閱讀

摘要:個人很喜歡谷歌的很喜歡但是沒有動手弄過,今天想動手操作一下菜單,網上有很多種圓形扇形射線直線等。開始的時候,以中心圓圓心為圓心,已某一值為半徑暫記作畫圓,之后個數字的的圓心都在前面的圓上。

  個人很喜歡谷歌的material design,很喜歡但是沒有動手弄過,今天想動手操作一下Floating Action Button菜單,網上有很多種:圓形、扇形、射線、直線等。我想在一個例子中用到這幾種展現形式,觸發按鈕在不同的位置,菜單用不同的方式展示……

  基于這種需求,開始著手準備,此時遇到一個問題,就是計算彈出按鈕的位置,開始的時候也沒有多想就開始一個一個的計算位置了,在計算的過程中發現有的坐標是一樣的(這里采用彈出四個菜單),在計算對應的圓形、扇形、半圓形菜單的位置時感覺還好是有一定規律的,畫了幾個圖之后發現這不就是鐘表上12個數字的位置嗎???哎?。?!所以才有了這一篇前傳,先弄一個表盤。

  在用css畫一個表盤的時候,也遇到了一些問題,因為中心原點和12個數字都是用的div,他們都是有大小的(這里記作:中心圓半徑為28px,即div的寬高都是28px;數字圓的半徑為20px,即div的寬高都是20px)。開始的時候,以中心圓圓心為圓心,已某一值為半徑(暫記作100px)畫圓,之后12個數字的div的圓心都在前面的圓上。以這種方式,來計算相對位置,即12個數字圓的left和top,很麻煩,因為存在著坐標平移……后來一想為什么不能將兩個坐標系的中心重合,之后再去計算位置簡單多了(不存在坐標平移)。實現方式就是12個數字圓放在一個div中,這個div的高度和寬度都是0,位置放在中心圓的圓心位置,單個數字圓的實現方式類似……

  方式定了之后就是具體的位置計算了,這里用的是三角函數,因為這里沒有使用js,要想在css中實現三角函數就只能less或者其他了(就是用過他,他的沒有研究,據說scss沒有內置,還得自己寫……),上一張圖,說明一下12個數字圓對應在坐標系中的位置,該用什么度數計算三角函數值:

  

  三點鐘方向算是0度,四點鐘為30度,順時針旋轉,依此類推……畫這個圖太費勁了,關鍵是不知道哪里有這樣的工具,這里是在一個在線網站上畫的,畫完之后是可以分享的,分享一下鏈接地址:https://www.desmos.com/calculator/a9sdt0or3s  

  

  下面貼一下代碼:

DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>fab 菜單實現之前傳-鐘表表盤title>
    <link rel="stylesheet" href="./index.css">
head>

<body>
    <div class="page-container">
        <div class="fab-menu-container">
            <div class="fab-trigger"><i class="icon icon-heart">i>div>
            <div class="fab-action-container">
                <div class="action">
                    <div class="action-content">1div>
                div>
                <div class="action">
                    <div class="action-content">2div>
                div>
                <div class="action">
                    <div class="action-content">3div>
                div>
                <div class="action">
                    <div class="action-content">4div>
                div>
                <div class="action">
                    <div class="action-content">5div>
                div>
                <div class="action">
                    <div class="action-content">6div>
                div>
                <div class="action">
                    <div class="action-content">7div>
                div>
                <div class="action">
                    <div class="action-content">8div>
                div>
                <div class="action">
                    <div class="action-content">9div>
                div>
                <div class="action">
                    <div class="action-content">10div>
                div>
                <div class="action">
                    <div class="action-content">11div>
                div>
                <div class="action">
                    <div class="action-content">12div>
                div>
            div>
        div>
    div>

body>

html>
html代碼
// 1、 純CSS圖標 ********開始********

// 圖標通用樣式
.icon {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    font-style: normal;
    color: #ffffd;
    text-align: left;
    text-indent: -9999px;
    direction: ltr;
}

.icon::after,
.icon::before {
    content: ;
    pointer-events: none;
}

// 加號圖標
.icon-plus {
    width: 30px;
    height: 30px;
}

.icon-plus::before {
    width: 20px;
    height: 2px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: inset 0 0 0 32px;
}

.icon-plus::after {
    height: 20px;
    width: 2px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: inset 0 0 0 32px;
}

// 心型圖標
.icon-heart {
    width: 20px;
    height: 20px;
    border-top-color: transparent;
    border-left-color: transparent;
    transform: rotate(45deg);
    border-radius: 7px 0;
    margin: 9px 7px 5px;
    border-bottom: 2px solid;
    border-right: 2px solid;
}

.icon-heart::before {
    width: 12px;
    height: 20px;
    position: absolute;
    left: -10px;
    bottom: -2px;
    border-radius: 20px 0 0 20px;
    border: 2px solid;
    border-right: none;
}

.icon-heart::after {
    width: 20px;
    height: 12px;
    right: -2px;
    top: -10px;
    border-radius: 20px 20px 0 0;
    position: absolute;
    border: 2px solid;
    border-bottom: none;
}

// 純CSS圖標 ********結束********

@fabTriggerRadius: 28px;
@fabActionRadius: 20px;
@distanceBetweenCircleCenter: 100px;
@fabActionCounter: 12;

*,
*::after,
*::before {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.page-container {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fab-menu-container {
    width: 2 * @fabTriggerRadius;
    height: 2 * @fabTriggerRadius;
    position: fixed;

    >.fab-trigger {
        height: 100%;
        width: 100%;
        //background-color: #06C;
        color: #FFF;
        //box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.11);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    >.fab-action-container {
        height: 0;
        width: 0;
        // background-color: red;
        position: absolute;
        top: @fabTriggerRadius;
        left: @fabTriggerRadius;

        >.action {
            height: 0;
            width: 0;
            position: absolute;

            .for(@i) when (@i <=@fabActionCounter) {

                &:nth-child(@{i}) {
                    left: @distanceBetweenCircleCenter * cos((@i - 3)*30deg);
                    top: @distanceBetweenCircleCenter * sin((@i - 3)*30deg);
                }

                .for((@i + 1));
            }

            .for(1);

            >.action-content {
                width: 2 * @fabActionRadius;
                height: 2 * @fabActionRadius;
                position: absolute;
                top: -@fabActionRadius;
                left: -@fabActionRadius;
                display: flex;
                align-items: center;
                justify-content: center;
                // background-color: red;
            }
        }
    }
}
less代碼

  演示地址:鐘表表盤

  至此,這篇文章就結束了。這里在記錄幾個網址:

  1、35 Cool Floating Action Button Animations

  2、Less 在線編譯器

  3、https://www.desmos.com/

  4、http://www.matools.com/less

  以下為純CSS圖標:

  5、https://codepen.io/stiffi/pen/ysbCd

  6、https://codepen.io/tidusxujun/pen/GgNxxP

  7、https://codepen.io/airpwn/pen/hgdBc

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/1196.html

相關文章

  • fab 菜單實現—圓形、半圓、扇形、直線、射線

    摘要:前段時間記錄一下菜單實現之前傳鐘表表盤,今天終于弄正文了。本文基于上篇文章的布局方式和位置計算,并參考這篇筆記的動畫實現了環狀半圓形扇形直線射線形狀的菜單。預覽這篇筆記也太短了  前段時間記錄一下fab 菜單實現之前傳-鐘表表盤,今天終于弄正文了。   本文基于上篇文章的布局方式和位置計算,并參考35 Cool Floating Action Button Animations(https:...

    rubyshen 評論0 收藏0
  • 用CSS3實現鐘表效果

    摘要:背景最近在學習,看到了一個小案例,通過自己的學習,動手實現了它,現在把它分享出來。效果圖實現過程首先我們需要在頁面中寫出一個靜態的鐘表效果。并對其進行簡單樣式設置。 背景:最近在學習CSS3,看到了一個小案例,通過自己的學習,動手實現了它,現在把它分享出來。 效果圖 showImg(https://segmentfault.com/img/bV5hBr?w=457&h=366); 實現...

    1treeS 評論0 收藏0
  • 用CSS3實現鐘表效果

    摘要:背景最近在學習,看到了一個小案例,通過自己的學習,動手實現了它,現在把它分享出來。效果圖實現過程首先我們需要在頁面中寫出一個靜態的鐘表效果。并對其進行簡單樣式設置。 背景:最近在學習CSS3,看到了一個小案例,通過自己的學習,動手實現了它,現在把它分享出來。 效果圖 showImg(https://segmentfault.com/img/bV5hBr?w=457&h=366); 實現...

    codergarden 評論0 收藏0
  • 用CSS3實現鐘表效果

    摘要:背景最近在學習,看到了一個小案例,通過自己的學習,動手實現了它,現在把它分享出來。效果圖實現過程首先我們需要在頁面中寫出一個靜態的鐘表效果。并對其進行簡單樣式設置。 背景:最近在學習CSS3,看到了一個小案例,通過自己的學習,動手實現了它,現在把它分享出來。 效果圖 showImg(https://segmentfault.com/img/bV5hBr?w=457&h=366); 實現...

    SimonMa 評論0 收藏0
  • 微信小程序Taro開發(3):canvas制作鐘表

    摘要:制作鐘表分成兩部分,一部分是表盤,一部分是時針分針秒針的走動,首先,先繪制表盤繪制表盤圓半徑設置坐標軸原點圓心表盤外圓表盤刻度大格表盤刻度小格表盤時刻數字設置字體樣式字體上下居中,繪制時間利用三角函數計算字體坐標表達式開始繪 制作鐘表分成兩部分,一部分是表盤,一部分是時針、分針、秒針的走動,首先,先繪制表盤: // 繪制表盤 getDialClock = () => { c...

    cuieney 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<