国产一级a片免费看高清,亚洲熟女中文字幕在线视频,黄三级高清在线播放,免费黄色视频在线看

打開APP
userphoto
未登錄

開通VIP,暢享免費(fèi)電子書等14項(xiàng)超值服

開通VIP
3種方法(div法、css法、js法)制作html的旋轉(zhuǎn)太極圖

1.說(shuō)明:

推薦指數(shù):★★★★

通過動(dòng)畫太極的方法,增加學(xué)習(xí)興趣,對(duì)html的結(jié)構(gòu)和css、JavaScript、div的認(rèn)識(shí)和了解會(huì)逐步深入。

2.復(fù)習(xí)html的結(jié)構(gòu)框架

<!DOCTYPE html><html> <head> <meta charset='UTF-8'> <title>html結(jié)構(gòu)基本框架代碼</title> </head> <body> </body></html>

3 div法

3.1 代碼:復(fù)制下面的代碼,命名為:div法.html,用瀏覽器打開即可。

<!DOCTYPE html><html><head>    <meta charset='UTF-8'>    <title>div法的旋轉(zhuǎn)的太極圖</title></head><!--單獨(dú)style,不在head和body,只是在body內(nèi)有一個(gè)div容器--><style>div{    width: 0;    /*這個(gè)高就是黑色圓形和白色圓形的直徑和*/    height: 200px;    /*黑色太極部分的圈帶動(dòng)的黑色的陰影*/    border-left: 100px solid black;    /*白色太極部分的圈帶動(dòng)的白色的陰影*/    border-right: 100px solid #fff;    box-shadow: 0 0 15px rgba(0,0,0,.5);    /*旋轉(zhuǎn)半徑100*/    border-radius: 100px;    /*旋轉(zhuǎn)速度定義,越小越快*/    -webkit-animation:rotation 2.5s linear infinite;}div:before{    content: '';    position: absolute;    height: 100px;    z-index: 1;    border-radius: 100px;    /*白色的小半圓*/    border-left: 50px solid #fff;    border-right: 50px solid #fff;    left: -50px;    /*黑色的小半圓,因?yàn)檗D(zhuǎn)動(dòng)拖動(dòng)黑色陰影*/    box-shadow: 0 100px 0 black;}div:after{    content: '';    position: absolute;    /*height是太極里面小圓圈的高30,要和border-radius30一致,才畫出圓*/    height: 30px;    /*這個(gè)是顯示小圓圈的,0就是不顯示*/    z-index: 1;    border-radius: 30px;    border-left: 15px solid;    border-right: 15px solid;    /*top和left,決定小圓圈白色和黑色的位置*/    top: 40px;    left: -15px;    /*黑色太極部分里面的小白色圓圈*/    box-shadow: 0 100px 0 white;}/*旋轉(zhuǎn)角度函數(shù)定義*/@-webkit-keyframes rotation {    0% {-webkit-transform:rotate(0deg);}    100% {-webkit-transform:rotate(-360deg);}}</style><body>    <div></div></body></html>

3.2 效果圖

4 css法

4.1 css法.html代碼

<!DOCTYPE html><html><head> <meta charset='UTF-8'> <title>css法的旋轉(zhuǎn)的太極圖</title> <!--css導(dǎo)入和js導(dǎo)入不一樣,請(qǐng)注意--> <!--script-- src='./tj.css'></!--script--> <link rel='stylesheet' type='text/css' href='./tj.css'></head><body> <div class='tj'></div> </body></html>

4.2 tj.css代碼:注意與上面兩個(gè)文件放在同一個(gè)文件夾下

.tj{    width: 100px;    height: 200px;    border: solid black;    border-width: 2px 100px 2px 2px;    background-color: #fff;    border-radius: 50%;    position: absolute;    /*run是動(dòng)起來(lái)的函數(shù),在最后面設(shè)置和定義*/    animation: run 2s linear infinite;    margin: auto;    top: 0;    left: 0;    right: 0;    bottom: 0;}.tj:before{    content: ' ';    position: absolute;    width: 28px;    height: 28px;    background-color: black;    /*36=(100-28)/2得到的,是小白色圓圈的半徑*/    border: 36px #ffffff solid;    border-radius: 50%;    top: 0;    left: 50%;}.tj:after{    content: ' ';    position: absolute;    width: 28px;    height: 28px;    background-color: #ffffff;    /*36=(100-28)/2得到的,是小黑色圓圈的半徑*/    border: 36px black solid;    border-radius: 50%;    top: 50%;    left: 50%;}/*run動(dòng)起來(lái)的函數(shù)定義*/@keyframes run{        0%{            transform: rotate(0deg);        }        100%{            transform: rotate(360deg);        }    }

4.3 效果圖

5 js法=就是JavaScript法

5.1 js法.html代碼:

<!DOCTYPE html><html> <head> <meta charset='UTF-8'> <title>js法的旋轉(zhuǎn)的太極圖</title> <!--注意下面2鐘都可以,主要是瀏覽器都支持html5--> <!--script-- src='script.js' type='text/javascript'></!--script--> <script src='./script.js'></script> <!--簡(jiǎn)單的css內(nèi)容就這樣寫在下面,如果css比較復(fù)雜,則需要外部導(dǎo)入--> <style type='text/css'> canvas{ display: block; margin: 20px auto; } </style> </head> <body onload='main()'> <!--畫布大小,畫布框的線顏色藍(lán)色設(shè)置,solid blue是指畫布外框的顏色為藍(lán)色--> <canvas width='300' height='300' id='canvas'style='border:1px solid blue'></canvas> </body></html>

5.2 script.js代碼:與上面html放在同一個(gè)文件夾下

//注意到?jīng)]有null=0,效果是一樣的var angle = 0;//var canvas = null;//var ctx = null;var canvas = 0;var ctx = 0;function main(){    window.setInterval(function()    {        canvas = document.getElementById('canvas');        ctx = canvas.getContext('2d');        // 畫布大小有關(guān)        ctx.clearRect(0, 0, 300, 300);        // 線條寬度0~10,均可        ctx.lineWidth = 0;        ctx.save();        // 旋轉(zhuǎn)的中心點(diǎn)的坐標(biāo)位置150,150        ctx.translate(150,150);        ctx.rotate(angle);        // 太極黑色部分        ctx.fillStyle = 'black';        ctx.beginPath();        // 注意幾個(gè)函數(shù)數(shù)值的關(guān)系,120,60,半徑和坐標(biāo)的關(guān)系,如果要縮小半徑,那么坐標(biāo)也需要調(diào)整        ctx.arc(0, 0, 120, 0, Math.PI, true);        ctx.fill();        ctx.closePath();        // 太極白色部分        ctx.fillStyle = 'white';        ctx.beginPath();        ctx.arc(0, 0, 120, 0, Math.PI, false);        ctx.fill();        ctx.closePath();        // 太極黑色部分        ctx.fillStyle = 'black';        ctx.beginPath();        ctx.arc(60, -0.6, 60, 0, Math.PI, false);        ctx.fill();        ctx.closePath();        // 太極白色部分        ctx.fillStyle = 'white';        ctx.lineWidth = 0;        ctx.beginPath();        ctx.arc(-60, 0, 60, 0, Math.PI, true);        ctx.fill();        ctx.closePath();        // 白色太極部分里面的小黑色圓圈        ctx.fillStyle = 'black';        ctx.beginPath();        //畫圓的函數(shù):-145,0是坐標(biāo),15是半徑,2*Math.PI是一個(gè)圓,一個(gè)π是半圓        ctx.arc(-60, 0, 15, 0, 2*Math.PI, false);        ctx.fill();        ctx.closePath();        // 黑色太極部分里面的小白色圓圈        ctx.fillStyle = 'white';        ctx.beginPath();        ctx.arc(60, 0, 15, 0, 2*Math.PI, false);        ctx.fill();        ctx.closePath();        // 旋轉(zhuǎn)角度一次增加多少        ctx.restore();        angle += 0.02;    // 50代表轉(zhuǎn)速,越大越慢,越小越快    },1);}

5.3 效果圖

6 值得收藏,慢慢回味。

本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊舉報(bào)。
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
CSS如何實(shí)現(xiàn)波浪效果
HTML5 中 40 個(gè)最重要的技術(shù)點(diǎn)
讓ie6,7,8支持canvas,css3等主流html5技術(shù)
給萌新HTML5 入門指南
HTML5-右腦開發(fā)項(xiàng)目-基礎(chǔ)訓(xùn)練-圓漸變con_circularGradient.html
html5之canvas困惑 在canvas標(biāo)簽內(nèi)需要設(shè)置了寬跟高,如果在css中設(shè)置同樣的寬跟高,畫出來(lái)的圖像...
更多類似文章 >>
生活服務(wù)
分享 收藏 導(dǎo)長(zhǎng)圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服