摘要: 一、索引的作用: 快速读取数据; 保证数据记录的唯一性; 实现表与表之间的参照完整性; 在使用group by order by子句进行数据检索时,利用索引可以减少排序和分组的时间; 注意: 一个表最多可以有16个索引; 可以由单个字段创建索引,也可以在多个字段的组合上创建索引,最多不超过15个字段 阅读全文
posted @ 2020-08-30 21:27 博客码 阅读(504) 评论(0) 推荐(0) 编辑
……
(function($){$.fn.snow=function(options){var $flake=$(' ').css({'position':'absolute','top':'-50px'}).html('❄'),documentHeight=$(document).height(),documentWidth=$(document).width(),defaults={minSize:10,maxSize:20,newOn:500,flakeColor:"#FFFFFF"},options=$.extend({},defaults,options);var interval=setInterval(function(){var startPositionLeft=Math.random()*documentWidth-100,startOpacity=0.5+Math.random(),sizeFlake=options.minSize+Math.random()*options.maxSize,endPositionTop=documentHeight-40,endPositionLeft=startPositionLeft-100+Math.random()*200,durationFall=documentHeight*10+Math.random()*5000;$flake.clone().appendTo('body').css({left:startPositionLeft,opacity:startOpacity,'font-size':sizeFlake,color:options.flakeColor}).animate({top:endPositionTop,left:endPositionLeft,opacity:0.2},durationFall,'linear',function(){$(this).remove()});},options.newOn);};})(jQuery); $.fn.snow({ minSize: 5, maxSize: 50, newOn: 1000, flakeColor: '#FFF' });