国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

javascript實現簡單加載隨機色方塊

2019-11-20 10:56:06
字體:
來源:轉載
供稿:網友

用碎片加載小方塊實現簡單的隨機色塊,直接上代碼:
效果圖:

具體代碼:

<!DOCTYPE html><html><head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta charset="utf-8"> <title>koringz</title> <link rel="stylesheet" href="css/demo.css"></head><body> <div class="container">  <div class="main">   <div class="colorful"></div>  </div> </div></body></html>

css代碼:

* { -webkit-box-sizing: border-box;  -moz-box-sizing: border-box;   box-sizing: border-box;}html { font-size: 10px; -webkit-tap-highlight-color: transparent;}body { margin: 0; padding: 0; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; line-height: 1.42857143; color: #333; background-color: rgba(211,232,132,0.8);}.container { overflow: visible;}.main { position: relative; width: 90%; height:200px; margin:auto;}.colorful { overflow: visible; width: 100%; height: 100%;}.colorful > a { float: left; display: block; width: 50px; height: 50px; zoom:2;}.colorful > a:hover { -webkit-animation:infinite 2s ease-in-out start-roll; -moz-animation:infinite 2s ease-in-out start-roll;   animation:infinite 2s ease-in-out start-roll;}@-webkit-keyframes start-roll{ 0% {  -webkit-transform: rotate(0deg); /*chrome*/  -moz-transform: rotate(0deg); /*火狐*/  -ms-transform: rotate(0deg); /*IE*/  transform: rotate(0deg);  -webkit-transition: opacity .3s linear;  transition: opacity .3s linear;  opacity: .5;  filter: alpha(opacity=50);  zoom:1; } 50% {  -webkit-transform: rotate(180deg); /*chrome*/  -moz-transform: rotate(180deg); /*火狐*/  -ms-transform: rotate(180deg); /*IE*/  transform: rotate(180deg);  -webkit-transition: opacity 1s linear;  transition: opacity 1s linear;  opacity: 1;  filter: alpha(opacity=100);   zoom:2; } 100% {  -webkit-transform: rotate(360deg); /*chrome*/  -moz-transform: rotate(360deg); /*火狐*/  -ms-transform: rotate(360deg); /*IE*/  transform: rotate(360deg);  -webkit-transition: opacity .3s linear;  transition: opacity .3s linear;  opacity: .5;  filter: alpha(opacity=50);  zoom:1; }}@-moz-keyframes start-roll{ 0% {  -webkit-transform: rotate(0deg); /*chrome*/  -moz-transform: rotate(0deg); /*火狐*/  -ms-transform: rotate(0deg); /*IE*/  transform: rotate(0deg);  -webkit-transition: opacity .3s linear;  transition: opacity .3s linear;  opacity: .5;  filter: alpha(opacity=50); } 50% {  -webkit-transform: rotate(180deg); /*chrome*/  -moz-transform: rotate(180deg); /*火狐*/  -ms-transform: rotate(180deg); /*IE*/  transform: rotate(180deg);  -webkit-transition: opacity 1s linear;  transition: opacity 1s linear;  opacity: .5;  filter: alpha(opacity=50); } 100% {  -webkit-transform: rotate(360deg); /*chrome*/  -moz-transform: rotate(360deg); /*火狐*/  -ms-transform: rotate(360deg); /*IE*/  transform: rotate(360deg);  -webkit-transition: opacity .3s linear;  transition: opacity .3s linear;  opacity: .5;  filter: alpha(opacity=50); }}@keyframes start-roll{ 0% {  -webkit-transform: rotate(0deg); /*chrome*/  -moz-transform: rotate(0deg); /*火狐*/  -ms-transform: rotate(0deg); /*IE*/  transform: rotate(0deg);  -webkit-transition: opacity .3s linear;  transition: opacity .3s linear;  opacity: .5;  filter: alpha(opacity=50); } 50% {  -webkit-transform: rotate(180deg); /*chrome*/  -moz-transform: rotate(180deg); /*火狐*/  -ms-transform: rotate(180deg); /*IE*/  transform: rotate(180deg);  -webkit-transition: opacity 1s linear;  transition: opacity 1s linear;  opacity: .5;  filter: alpha(opacity=50); } 100% {  -webkit-transform: rotate(360deg); /*chrome*/  -moz-transform: rotate(360deg); /*火狐*/  -ms-transform: rotate(360deg); /*IE*/  transform: rotate(360deg);  -webkit-transition: opacity .3s linear;  transition: opacity .3s linear;  opacity: .5;  filter: alpha(opacity=50); }}

js代碼:

(function (window) { var document = window.document; function on(elem, evtnm, eventhd) {  var onevtnm = 'on' + evtnm;  elem[onevtnm] = eventhd; } function grc() {  var val = [], i = 0;  while (++i <= 3) {   val.push(Math.floor(Math.random() * 255));  }  return 'rgb(' + val.join() + ')'; } function fbc() {  var el = document.querySelectorAll('.colorful')[0],   total = Math.floor(el.offsetWidth / 50) * Math.floor(el.offsetHeight / 50),   df = document.createDocumentFragment(),   a;  while (total-- > 0) {   a = document.createElement('a');   a.style.backgroundColor = grc();   df.appendChild(a);  }  el.appendChild(df); } on(window, 'load', function () {  fbc(); });})(window)

希望本文所述對大家學習javascript程序設計有所幫助。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 德昌县| 湖南省| 广水市| 克山县| 青州市| 徐闻县| 景泰县| 泌阳县| 中宁县| 民权县| 兴仁县| 涿州市| 卢湾区| 天津市| 香港| 中山市| 甘孜县| 襄垣县| 岳池县| 义马市| 手机| 弋阳县| 晋宁县| 正镶白旗| 麟游县| 文成县| 台东市| 灵璧县| 方城县| 塔城市| 苍南县| 顺义区| 汉中市| 大竹县| 岳西县| 贺兰县| 子洲县| 米泉市| 天峻县| 阳山县| 湖南省|