1. 程式人生 > >h5+正方體3D旋轉+2個園互相轉圈+下拉欄+來回忽閃+html旋轉動畫+補間動畫+雙飛翼佈局+對話方塊那個三角

h5+正方體3D旋轉+2個園互相轉圈+下拉欄+來回忽閃+html旋轉動畫+補間動畫+雙飛翼佈局+對話方塊那個三角

正方體3D旋轉html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        ul{
            position: relative;
            width: 200px;
            height: 200px;
            transform-style: preserve-3d;
            margin: 250px auto;
            animation: run 5s infinite linear;
        }
        li{
            list-style: none;
            width:200px;
            height: 200px;
            position: absolute;
            left: 0;
            top: 0;
            opacity: 0.4;
        }
        li:first-child{
            background: red;
            transform: translateZ(100px)
        }
        li:nth-child(2){
            background: green;
            transform: translateY(-100px) rotateX(90deg);
        }
        li:nth-child(3){
            background: pink;
            transform: translateY(100px) rotateX(90deg);
        }
        li:nth-child(4){
            background: orange;
            transform: translateX(-100px) rotateY(90deg);
        }
        li:nth-child(5){
            background: blue;
            transform: translateX(100px) rotateY(90deg);
        }
        li:nth-child(6){
            background: blue;
            transform: translateZ(-100px);
        }
        @keyframes run {
            0%{
                transform:rotateX(0deg) rotateY(0deg);
            }
            100%{
                transform:rotateX(360deg) rotateY(360deg);
            }
        }
    </style>
</head>
<body>
    <ul>
        <li>1</li>
        <li>2</li>
        <li>3</li>
        <li>4</li>
        <li>5</li>
        <li>6</li>
    </ul>

</body>
</html>

2個園互相旋轉

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        *{
            margin: 0;
            padding: 0;
        }
        .bigCircle{
            width: 200px;
            height:200px;
            border-radius: 50%;
            background: rgba(0,0,0,.5);
            position: relative;
            animation: rotate 4s infinite linear;
            margin: 100px auto;
        }
        .smCircle{
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255,0,0,.6);
            animation: run 4s infinite linear;
            margin: 0 auto;
        }
        @keyframes run {
            0%{
                transform: rotate(0deg);
            }
            100%{
                transform: rotate(180deg);
            }
        }
        @keyframes rotate {
            0%{
                transform: rotate(0deg);
            }
            100%{
                transform: rotate(-360deg);
            }
        }
    </style>
</head>
<body>
<div class="bigCircle">
    轉
</div>
<div class="smCircle">倒轉</div>


</body>
</html>

html下拉欄

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        *{
            margin:0;
            padding: 0;
        }
        .clear:after{
            content:"\200B";
            display: block;
            clear: both;
            width: 0;
            height: 0;
        }
        li{
            list-style: none;
        }
        a{
            text-decoration: none;
        }
        .item{
            float: left;
            width: 300px;
            text-align: center;
            background: #999;
            color: #fff;
            position: relative;
        }
        a{
            line-height: 40px;
            color: #fff;
        }
        .child{
            position: absolute;
            top: 40px;
            left: 0;
            width: 300px;
            background: #666;
            display: none;
        }
        .item:hover .child{
            display: block;
        }
        .child li:hover{
            background: blue;
        }
    </style>
</head>
<body>
<ul class="clear">
    <li class="item">
        <a href="#">首頁</a>
        <ul class="child">
            <li><a href="#">列表</a></li>
            <li><a href="#">列表</a></li>
            <li><a href="#">列表</a></li>
            <li><a href="#">列表</a></li>
            <li><a href="#">列表</a></li>
        </ul>
    </li>
    <li class="item">
        <a href="#">導航頁</a>
        <ul class="child">
            <li><a href="#">列表</a></li>
            <li><a href="#">列表</a></li>
            <li><a href="#">列表</a></li>
            <li><a href="#">列表</a></li>
            <li><a href="#">列表</a></li>
        </ul>
    </li>
</ul>
<div class="" style="width: 100%;height: 300px;background: red"></div>
</body>
</html>

html+來回忽閃

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        *{
            margin: 0;
            padding: 0;
        }
        p{
            width: 38px;
            height: 43px;
            background: url("0901/pic1.png") no-repeat -334px -47px;
        }
        div{
            width: 40px;
            height: 43px;
            background: url("0901/pic1.png") no-repeat -370px -167px;
        }
        body{
            background: red;
        }
        .light{
            margin: 0 auto;
            width: 0;
            height: 0;
            background: #fff;
          /*  box-shadow: 0 0 20px 50px rgba(255,255,255,.8);*/
            animation: run 1s infinite;
        }
        @keyframes run {
            0%{
                box-shadow: 0 0 20px 20px rgba(255,255,255,.8);
            }
            25%{
                box-shadow: 0 0 20px 20px rgba(255,255,255,0.3);
            }
            50%{
                box-shadow: 0 0 20px 20px rgba(255,255,255,.1);
            }
            70%{
                box-shadow: 0 0 20px 20px rgba(255,255,255,0.3);
            }
            100%{
                box-shadow: 0 0 20px 20px rgba(255,255,255,0.8);
            }
        }
    </style>
</head>
<body>
<p></p>
<div></div>
<div class="light"></div>
</body>
</html>

html旋轉動畫+補間動畫

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        .box{
            width: 120px;
            height: 80px;
            line-height: 80px;
            text-align: center;
            background: darkblue;
            color: #fff;
            transition: all 1s ease 1s;
            margin: 200px auto;
        }
        .box:hover{
            transform: rotate(360deg) scale(2,1.2);
        }
        .pop{
            width: 500px;
            height: 50px;
            background: red;
            animation:change 5s linear;
            animation-fill-mode: forwards;
        }
        @keyframes change {
            0%{
                width: 500px;
            }
            50%{
                width: 800px;
            }
            100%{
                width: 300px;
            }
        }
    </style>
</head>
<body>
<div class="box">CSS過度</div>
<div class="pop"></div>
</body>
</html>

html雙飛翼佈局

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        *{
            margin: 0;
            padding: 0;
        }
        html,body{
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        .container{
            width: 100%;
           /* height: 500px;*/
        }
        .center{
            width: 100%;
            height: 500px;
            float: left;
            background: red;
        }
        .left,.right{
            width: 250px;
            height: 500px;
            background: green;
            float: left;
        }
        .right{
            background: blue;
        }
        .left{
            margin-left: -100%;
        }
        .right{
            margin-left: -250px;
        }
        p{
            width: 100%;
            padding: 0 250px;
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="center"><p>中間</p></div>
        <div class="left">左邊</div>
        <div class="right">右邊</div>
    </div>
</body>
</html>

html+對話方塊那個三角

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        *{
            margin: 0;
            padding: 0;
        }
        li{
            list-style: none;
        }
        body{
            text-align: center;
        }
        .parent{
            display: inline-block;
        }
        li{
            width: 300px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            font-size: 14px;
            color: #fff;
        }
        .title{
            background: red;
        }
        .child{
            background: #666;
            display: none;
        }
        .parent:hover .child{
            display: block;
        }

        .pic{
            box-shadow: 10px 10px 10px 10px rgba(0,0,0,.5);
        }
        .dia{
            width: 200px;
            height: 40px;
            text-align: center;
            line-height: 40px;
            border-radius: 5px;
            background: orange;
            margin: 100px auto;
            position: relative;
        }
        .dia:after{
            content: "\200B";
            display: block;
            width: 0;
            height: 0;
            border:10px solid transparent;
            border-right: 10px solid orange;
            position: absolute;
            left: -20px;
            top: 7px;
        }
    </style>
</head>
<body>
<ul class="parent">
    <li class="title">專案一</li>
    <li class="pos">
        <ul class="child">
            <li>fdsjjhv</li>
            <li>fdsjjhv</li>
            <li>fdsjjhv</li>
            <li>fdsjjhv</li>
        </ul>
    </li>
</ul>
<div>
    <img src="0901/mutimedia.jpg" class="pic">
</div>
<!--對話方塊-->
<p class="dia">sdjvnsubguv</p>
</body>
</html>

相關推薦

h5+正方體3D旋轉+2互相轉圈++來回忽閃+html旋轉動畫+動畫+佈局+對話方塊那個三角

正方體3D旋轉html <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8"&g

C#,winform形式 2combobox 互相聯動---資料庫access

參考文章: privatevoid Form1_Load(object sender, EventArgs e)        {            SqlConnection con =new SqlConnection(conn);            con

andbase框架實現上載入,重新整理和自定義旋轉動畫的方式

1、今天做列表時,需求上需要做一個下拉重新整理,下拉載入更多的功能,就上網找了一些例子,由於我原來用的就是andbase框架,就還是用它原來寫的了。其中同事給我推薦另一個框架BGARefreshLayout-Android,下載地址https://github.com/bin

消除2按鈕之間1px細節引起的沖突

mage 沖突 text true margin 間距 ima html none 1、代碼 <!doctype html> <html lang="en"> <head> <meta charset="

2準則,解決人際、團隊和客戶問題

謝謝 don 用戶管理 支付寶 避免 轉發 過去 hat 出現 一 賣產品不如賣情懷? 情懷這東西,有點難以描述,每個人的定義也不同,但似乎是把萬能鑰匙,能解決諸多難題,比如—— 人才問題:原先的Uber中國,通過理想和情懷感召了很多人,讓他們甚至願意降薪降職過去。

楊恒說李的算法好-我問你聽誰說的-龍哥說的(java中常見的List就2)(list放入的是原子元素)

ron 2個 常用 span color 原子 ges pan col 1.List中常用的 方法集合: 函數原型 ******************************************* *****************************

JS判斷客戶端是手機還是PC的2代碼

agents redirect rep 客戶 flag agen 設備 2.3 ash Javascript 判斷客戶端是否為 PC 還是手持設備,有時候項目中需要用到,很方便的檢測,源生的哦,方法一共有兩種 1、第一種: 復制代碼代碼如下: function IsPC()

Android 仿 窗簾效果 和 登錄界面拖動效果 (Scroller類的應用) 附 2DEMO及源代碼

@override 宋體 off down != 過程 事件 學習 border 在android學習中,動作交互是軟件中重要的一部分。當中的Scroller就是提供了拖動效果的類,在網上。比方說一些Launcher實現滑屏都能夠通過這個類去實現。以下要說的

List集合的使用小技巧|非常實用首先舉例2集合A,B. List<i

判斷 show 包含 合並 工作 並且 sta 完成 ear List集合在開發程序的時候,我一般會頻繁的用到,感覺幾乎可以代替數組來完成大量的工作。並且他也有很多實用的功能,讓代碼更加簡潔高效。首先舉例2個集合A,B. List<int> listA = ne

jmeter-邏輯控制器之 交替控制器(實現2請求每次只執行其中一個)

cnblogs 兩個 str 運行 線程 分享 技術分享 三次 src 交替控制器: 案例:兩個請求每次只能執行其中一個,可使用交替控制器。 1.線程組-》添加-》邏輯控制器-》交替控制器 2.在控制下添加兩個http請求。運行的時候第一次循環執行第一個,第二次循環執

關於去除2inline-block之間的間距

mage 父親 更新 com lock -1 記錄 between 記憶 今天要做 這種效果的圖。我是用span做的 圖文與圖文按鈕。因為行內元素沒有width與height,(雖然可以用padding撐大),本人更喜歡用width與height。於是用了display:i

每隔2 小時將/etc/services 文件打包備份到/tmp (最好每次備份成不同的備份包)

每隔2 個小時將/etc/services 文件打包備份到/tmp 下(最好每次備份成不同的備份包)第一個裏程碑 測試命令 把文件/etc/services壓縮到/tmp[[email protected]/* */ ~]# cd / && tar zcf /tmp/etc.t

ASP.NET MVC 搜索+保存搜索結果.2按鈕共用一個表單

req request exp select ucc 結果 total cli 調用 想要實現的效果,1.搜索功能 2.搜索結果保存到text功能 前臺代碼 一個表單2個按鈕,通過JS代碼來修改form的action,來實現調用不同的後臺代碼 &l

mac 修改vi 使一個tab=2空格

一個 exp 習慣 多人 mrc log shift mac expand   使用vi/vim編輯文件的時候,很多人不習慣tab,而希望用2個空格或者4個空格來替代,那麽可以使用一下設置來完成: # 打開.vimrc文件 vi ~/.vimrc # 在文件末尾加上以下

MIS的趨勢必定是圍繞機器取代人手,分工越來越細(小餐廳都支持微信自助點餐,結賬時就打折,相當於省了1、2人手,SQL發明以後,程序員的工作更多了)

nbsp 我認 公司 點餐 管理系 特定 組裝 bsp 適合 最後,我還想簡略的談談MIS及MIS快速開發工具的未來。MIS的趨勢必定是圍繞機器取代人手,分工越來越細。比如:現在有些小型的咖啡廳裏的財務子系統就簡單到不需要使用者有會計知識,相當於省了會計人手;有些小餐廳都支

邊框在2邊,不重疊不接觸的情況是梯形。

clas com wid nbsp code http height left border <div class="border"></div> .border{border: 80px solid red;width:

pivot 與 unpivot 函數是SQL05新提供的2函數

src 理解 現在 var unp sina 效果 需要 art pivot 與 unpivot 函數是SQL05新提供的2個函數 ---------------------------------------------------------------------

不用第三方參數,交換2參數的值的兩種宏函數

三方 logs cto ring using def names 第三方 fine #include <iostream> #include <stdio.h> #include <string.h> #include <vect

獲取2時間之間的月份差

min urn ear ret time param 獲取 int nth /// <summary> /// 獲取2個時間之間的月份差 /// </summary> /// <param name="

2&lt^fen^ul&gt^fen^&lt^fen^li&gt^fen^&lt^fen^/li&gt^fen^&lt^fen^/ul&gt^fen^為第二ul上色

ida www left info margin adk com dea cin 壁6堆g慌0DTJ襯蘇富1http://shequ.docin.com/zaha4146 ns27DT庸朗PFV矢飛http://huiyi.docin.com/twl53139 R5XN僨9