.說(shuō)明:
推薦指數(shù):★★★★
通過(guò)動(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,用瀏覽器打開(kāi)即可。
<!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 值得收藏,慢慢回味。
生css,js實(shí)現(xiàn)圖片切片旋轉(zhuǎn),圖片切片旋轉(zhuǎn)360°回到原點(diǎn)。
效果圖:
代碼
html+css:
這里就只展示切成3份 ,效果圖那里是切成6份。
javascript:
aguetteBox是一款算是比較主流的移動(dòng)端圖片畫廊的這么一款插件了,我不止一次自己用或者推薦給公司其他同事去用。
偶然的這么一次
恰巧我們?cè)谝粋€(gè)移動(dòng)端項(xiàng)目中用到了baguetteBox插件,
恰巧這個(gè)項(xiàng)目需要對(duì)圖片增加一個(gè) 旋轉(zhuǎn)的功能 (場(chǎng)景是用戶上傳的圖片可能是橫著的,那么需要將圖片進(jìn)行90度的逆旋轉(zhuǎn)或者順旋轉(zhuǎn)),
恰巧網(wǎng)上找了一圈,同時(shí)具備畫廊效果還有旋轉(zhuǎn)的功能的插件沒(méi)有,
恰巧自己懂一點(diǎn)JS
開(kāi)始了插件改造之路,這完全是一個(gè)無(wú)奈之舉,因?yàn)槲也惶鲝堉貜?fù)造輪子,好在代碼邏輯比較清晰,直接順著寫就好了。
下載地址 http://qietu.net/blog/1124.html
*請(qǐng)認(rèn)真填寫需求信息,我們會(huì)在24小時(shí)內(nèi)與您取得聯(lián)系。