在做页面中,多数情况下都会遇到页面上做动画效果,我们大部分做动画的时候都是使用框架来做(比如jquery),这里我介绍下如何让通过原生的js来实现像框架一样的动画效果!

1、匀速动画效果说明:匀速动画就是动画的效果从开始到结束每次执行的速度都是一致的

匀速动画

html,body{margin:0;padding:0;}

div{margin:0;padding:0;}

.odiv{width:200px; height:200px; background:#f00; position:relative; left:-200px; top:100px;}

.sdiv{width:20px; height:60px; background:#00f; position:absolute; top:70px; right:-20px;}

window.onload = function(){

var odiv = document.getElementById('odiv');

odiv.onmouseover = function(){

startMover(0);

}

odiv.onmouseout = function(){

startMover(-200);

}

}

var timer = null;

function startMover(itarget){//目标值

clearInterval(timer);//执行当前动画同时清除之前的动画

var odiv = document.getElementById('odiv');

timer = setInterval(function(){

var speed = 0;

if(odiv.offsetLeft > itarget){

speed = -1;

}

else{

speed = 1;

}

if(odiv.offsetLeft == itarget){

clearInterval(timer);

}

else{

odiv.style.left = odiv.offsetLeft+speed+'px';

}

},30);

}

//注明:offsetWidth = width+padding+border

//offsetHeight = height+padding+border

//offsetWidth=(border-width)*2+(padding-left)+(width)+(padding-right)

//offsetHeight=(border-width)*2+(padding-top)+(height)+(padding-bottom)

/*

offsetLeft=(offsetParent的padding-left)+(中间元素的offsetWidth)+(当前元素的margin-left)。

offsetTop=(offsetParent的padding-top)+(中间元素的offsetHeight)+(当前元素的margin-top)。

当offsetParent为body时情况比较特殊:

在IE8/9/10及Chrome中,offsetLeft = (body的margin-left)+(body的border-width)+(body的padding-left)+(当前元素的margin-left)。

在FireFox中,offsetLeft = (body的margin-left)+(body的padding-left)+(当前元素的margin-left)。

offsetParent属性返回一个对象的引用,这个对象是距离调用offsetParent的元素最近的(在包含层次中最靠近的),并且是已进行过CSS定位的容器元素。 如果这个容器元素未进行CSS定位, 则offsetParent属性的取值为根元素的引用。

总的来说两条规则:

1、如果当前元素的父级元素没有进行CSS定位(position为absolute或relative),offsetParent为body。

2、如果当前元素的父级元素中有CSS定位(position为absolute或relative),offsetParent取最近的那个父级元素。

*/

2、缓冲动画说明:缓冲动画就是动画到结束或这开始的时候,速度是随着动画执行的进度动态变化的

缓冲动画

html,body{margin:0;padding:0;}

div{margin:0;padding:0;}

.odiv{width:200px; height:200px; background:#f00; position:relative; left:-200px; top:100px;}

.sdiv{width:20px; height:60px; background:#00f; position:absolute; top:70px; right:-20px;}

window.onload = function(){

var odiv = document.getElementById('odiv');

odiv.onmouseover = function(){

startMover(0);

}

odiv.onmouseout = function(){

startMover(-200);

}

}

var timer = null;

function startMover(itarget){//速度和目标值

clearInterval(timer);//执行当前动画同时清除之前的动画

var odiv = document.getElementById('odiv');

timer = setInterval(function(){

var speed = (itarget-odiv.offsetLeft)/10;//缓冲动画的速度参数变化值

//如果速度是大于0,说明是向右走,那么就向上取整

speed = speed>0?Math.ceil(speed):Math.floor(speed);

//Math.floor();向下取整

if(odiv.offsetLeft == itarget){

clearInterval(timer);

}

else{

//clientLeft 返回对象的offsetLeft属性值和到当前窗口左边的真实值之间的距离

odiv.style.left = odiv.offsetLeft+speed+'px';

}

},30);

}

3、透明度动画

说明:处理元素透明效果的动画

透明度动画

html,body{margin:0;padding:0;}

div{margin:0;padding:0;}

.odiv{width:200px; height:200px; background:#f00; position:relative; left:0px; top:100px;opacity:0.3; filter:alpha(opacity:30); float:left; margin:10px;}

window.onload = function(){

var odiv = document.getElementsByTagName('div');

for(var i=0;i

{

odiv[i].onmouseover = function(){

startOP(this,100);

}

odiv[i].onmouseout = function(){

startOP(this,30);

}

odiv[i].timer = null;//事先定义

odiv[i].alpha = null;//事先定义

//这里发现一个问题,对象的动画属性可以不定义,但是透明度属性必须定义,否则报错

}

}

function startOP(obj,utarget){

clearInterval(obj.timer);//先关闭定时器

obj.timer = setInterval(function(){

var speed = 0;

if(obj.alpha>utarget){

speed = -10;

}

else{

speed = 10;

}

obj.alpha = obj.alpha+speed;

if(obj.alpha == utarget){

clearInterval(obj.timer);

}

obj.style.filter = 'alpha(opacity:'+obj.alpha+')';//基于IE的

obj.style.opacity = parseInt(obj.alpha)/100;

},30);

}

4、多物体动画

说明:多个物体在一起执行的动画效果

多物体动画

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,tr,td {margin:0;padding:0; font-size:12px;}

table {border-collapse:collapse;border-spacing:0;}

fieldset,img {border:0}

address,caption,cite,code,dfn,em,strong,th,var {font-style:normal;font-weight:normal}

ol,ul {list-style:none}

caption,th,td{text-align:center}

h1,h2,h3,h4,h5,h6 {font-size:100%;font-weight:normal}

q:before,q:after {content:''}

abbr,acronym { border:0}

.odiv{position:relative;}

.odiv ul li{width:200px; height:100px; background:yellow; margin-bottom:20px;}

window.onload = function(){

var olist = document.getElementsByTagName('li');

for(var i=0; i

{

olist[i].onmouseover = function(){

startmov(this,400);

};

olist[i].onmouseleave = function(){

startmov(this,200);

};

olist[i].timer = null;

}

function startmov(obj,itarget){

clearInterval(obj.timer);//执行动画之前清除动画

obj.timer = setInterval(function(){

var speed =0;

speed = (itarget - obj.offsetWidth)/8;

speed = speed>0?Math.ceil(speed):Math.floor(speed);

if(obj.offsetWidth == itarget){

clearInterval(obj.timer);

}

else{

obj.style.width = obj.offsetWidth+speed+'px';

}

},30);

}

}

//offsetWidth获取的是元素实际的宽度(包括边框和内边距)

//只要是多物体运动,所有的属性都不能共用

5、获取样式动画

说明:这里的获取样式是通过计算出来元素的样式,然后通过这个计算出来的结果来操作元素

样式动画

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,tr,td {margin:0;padding:0; font-size:12px;}

table {border-collapse:collapse;border-spacing:0;}

fieldset,img {border:0}

address,caption,cite,code,dfn,em,strong,th,var {font-style:normal;font-weight:normal}

ol,ul {list-style:none}

caption,th,td{text-align:center}

h1,h2,h3,h4,h5,h6 {font-size:100%;font-weight:normal}

q:before,q:after {content:''}

abbr,acronym { border:0}

.odiv{position:relative;width:200px; height:200px; border:2px solid #000; background:red; font-size:20px;}

hjshfjdfsdfhsdj

/*

currentStyle:获取计算后的样式,也叫当前样式、最终样式。

优点:可以获取元素的最终样式,包括浏览器的默认值,而不像style只能获取行间样式,所以更常用到。

注意:不能获取复合样式如background属性值,只能获取单一样式如background-color等。

alert (oAbc.currentStyle);

非常遗憾的是,这个好使的东西也不能被各大浏览器完美地支持。准确地说,在我测试的浏览器中,IE8和Opera 11弹出了“object CSSStyleDeclaration”;FF 12、chrome 14、safari 5则弹出“undefined”。

虽然currentStyle无法适用于所有浏览器,但是可以根据以上测试的结果来区分开支持、不支持的浏览器,然后再找到兼容的写法。

var oAbc = document.getElementById("abc");

if(oAbc.currentStyle) {

//IE、Opera

alert("我支持currentStyle");

} else {

//FF、chrome、safari

alert("我不支持currentStyle");

}

其实在FF浏览器中我们可以使用getComputedStyle(obj,false)来达到与IE下currentStyle相同的效果。

getComputedStyle(obj,false):在FF新版本中只需要第一个参数,即操作对象,第二个参数写“false”也是大家通用的写法,目的是为了兼容老版本的火狐浏览器。

兼容写法:

var oAbc = document.getElementById("abc");

if(oAbc.currentStyle) {

//IE、Opera

//alert("我支持currentStyle");

alert(oAbc.currentStyle.width);

} else {

//FF、chrome、safari

//alert("我不支持currentStyle");

alert(getComputedStyle(oAbc,false).width);

}

一个空白页面中body的id=”abc”,测试以上代码,IE和Opera弹出“auto”,其它三款浏览器则弹出“***px”。虽然结果不同,但是可以发现chrome和safari也都和火狐一样,顺利地读取到了属性值。不支持currentStyle的三款浏览器(FF、chrome、safari),都是支持getComputedStyle的。

结果表明:对浏览器是否支持currentStyle的判断 + getComputedStyle,就可以做到兼容各主流浏览器的效果。而且兼容写法并不复杂,你掌握了吗?^_^

支持currentStyle:IE、Opera

支持getComputedStyle:FireFox、Chrome、Safari

注意最后的弹出内容,currentStyle返回浏览器的默认值”auto”,而getComputedStyle则返回具体的值”**px”。这应该是两者的一个小差异,有兴趣的童鞋可以一起交流研究下。

*/

window.onload = function(){

var odiv = document.getElementById('odiv');

odiv.onmouseover = function(){

startMov(this);

};

function startMov(obj){

setInterval(function(){

obj.style.width = parseInt(getStyle(obj,'width'))+1+'px';

obj.style.fontSize = parseInt(getStyle(obj,'fontSize'))+1+'px';

},30);

}

function getStyle(obj,attr)

{

if(obj.currentStyle){

return obj.currentStyle[attr];

}

else{

return getComputedStyle(obj,false)[attr];

}

}

}

//offsetWidth获取的是元素实际的宽度(包括边框和内边距)

//只要是多物体运动,所有的属性都不能共用

6、多物体复杂动画说明:多物体复杂动画可以控制元素的不同属性变化来实现动画效果

多物体复杂动画

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,tr,td {margin:0;padding:0; font-size:12px;}

table {border-collapse:collapse;border-spacing:0;}

fieldset,img {border:0}

address,caption,cite,code,dfn,em,strong,th,var {font-style:normal;font-weight:normal}

ol,ul {list-style:none}

caption,th,td{text-align:center}

h1,h2,h3,h4,h5,h6 {font-size:100%;font-weight:normal}

q:before,q:after {content:''}

abbr,acronym { border:0}

.odiv{position:relative;}

.odiv ul li{width:200px; height:100px; background:yellow; margin-bottom:20px; border:2px solid #000;}

window.onload = function(){

var li1 = document.getElementById('li1');

var li2 = document.getElementById('li2');

li1.onmouseover = function(){

startMov(this,400,'width');

};

li1.onmouseout = function(){

startMov(this,200,'width');

};

li2.onmouseover = function(){

startMov(this,200,'height');

};

li2.onmouseout = function(){

startMov(this,100,'height');

};

function startMov(obj,itarget,attr){

clearInterval(obj.timer);//执行动画之前清除动画

obj.timer = setInterval(function(){

var icur = parseInt(getStyle(obj,attr));

var speed =0;

speed = (itarget - icur)/8;

speed = speed>0?Math.ceil(speed):Math.floor(speed);

if(icur == itarget){

clearInterval(obj.timer);

}

else{

obj.style[attr] = icur+speed+'px';

}

},30);

}

function getStyle(obj,attr)

{

if(obj.currentStyle){

return obj.currentStyle[attr];

}

else{

return getComputedStyle(obj,false)[attr];

}

}

}

//offsetWidth获取的是元素实际的宽度(包括边框和内边距)

//只要是多物体运动,所有的属性都不能共用

7、多物体复杂动画(带透明度的)

多物体复杂动画(带透明度的)

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,tr,td {margin:0;padding:0; font-size:12px;}

table {border-collapse:collapse;border-spacing:0;}

fieldset,img {border:0}

address,caption,cite,code,dfn,em,strong,th,var {font-style:normal;font-weight:normal}

ol,ul {list-style:none}

caption,th,td{text-align:center}

h1,h2,h3,h4,h5,h6 {font-size:100%;font-weight:normal}

q:before,q:after {content:''}

abbr,acronym { border:0}

.odiv{position:relative;}

.odiv ul li{width:200px; height:100px; background:yellow; margin-bottom:20px; border:2px solid #000;}

#li1{opacity:0.3;filter:alpha(opacity:30);}

window.onload = function(){

var li1 = document.getElementById('li1');

var li2 = document.getElementById('li2');

li1.onmouseover = function(){

startMov(this,100,'opacity');

};

li1.onmouseout = function(){

startMov(this,30,'opacity');

};

li2.onmouseover = function(){

startMov(this,200,'height');

};

li2.onmouseout = function(){

startMov(this,100,'height');

}

li1.timer = null;

li2.timer = null;

function startMov(obj,itarget,attr){

clearInterval(obj.timer);//执行动画之前清除动画

obj.timer = setInterval(function(){

var icur = 0;

if(attr == 'opacity'){

icur = Math.round(parseFloat(getStyle(obj,attr))*100);//转换成整数,并且四舍五入下

//计算机在计算小数的时候往往是不准确的!

}

else{

icur = parseInt(getStyle(obj,attr));

}

var speed =0;

speed = (itarget - icur)/8;

speed = speed>0?Math.ceil(speed):Math.floor(speed);

if(icur == itarget){

clearInterval(obj.timer);

}

else{

if(attr == 'opacity'){

obj.style.filter = 'alpha(opacity:'+(icur+speed)+')';

obj.style.opacity = (icur+speed)/100;

}

else{

obj.style[attr] = icur+speed+'px';

}

}

},30);

}

function getStyle(obj,attr)

{

if(obj.currentStyle){

return obj.currentStyle[attr];

}

else{

return getComputedStyle(obj,false)[attr];

}

}

}

//offsetWidth获取的是元素实际的宽度(包括边框和内边距)

//只要是多物体运动,所有的属性都不能共用

8、链式动画说明:链式动画就是当前动画执行完成后执行下一个动画效果

链式动画

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,tr,td {margin:0;padding:0; font-size:12px;}

table {border-collapse:collapse;border-spacing:0;}

fieldset,img {border:0}

address,caption,cite,code,dfn,em,strong,th,var {font-style:normal;font-weight:normal}

ol,ul {list-style:none}

caption,th,td{text-align:center}

h1,h2,h3,h4,h5,h6 {font-size:100%;font-weight:normal}

q:before,q:after {content:''}

abbr,acronym { border:0}

.odiv{position:relative;}

.odiv ul li{width:200px; height:100px; background:yellow; margin-bottom:20px; border:2px solid #000;}

#li1{opacity:0.3;filter:alpha(opacity:30);}

window.onload = function(){

var li1 = document.getElementById('li1');

li1.onmouseover = function(){

startMov(li1,400,'width',function(){

startMov(li1,200,'height',function(){

startMov(li1,100,'opacity');

});

});

};

li1.onmouseout = function(){

startMov(li1,30,'opacity',function(){

startMov(li1,100,'height',function(){

startMov(li1,100,'width');

});

});

};

li1.timer = null;

function startMov(obj,itarget,attr,fn){//fn回调函数

clearInterval(obj.timer);//执行动画之前清除动画

obj.timer = setInterval(function(){

var icur = 0;

if(attr == 'opacity'){

icur = Math.round(parseFloat(getStyle(obj,attr))*100);//转换成整数,并且四舍五入下

//计算机在计算小数的时候往往是不准确的!

}

else{

icur = parseInt(getStyle(obj,attr));

}

var speed =0;

speed = (itarget - icur)/8;

speed = speed>0?Math.ceil(speed):Math.floor(speed);

if(icur == itarget){

clearInterval(obj.timer);

if(fn){

fn();

}

}

else{

if(attr == 'opacity'){

obj.style.filter = 'alpha(opacity:'+(icur+speed)+')';

obj.style.opacity = (icur+speed)/100;

}

else{

obj.style[attr] = icur+speed+'px';

}

}

},30);

}

function getStyle(obj,attr)

{

if(obj.currentStyle){

return obj.currentStyle[attr];

}

else{

return getComputedStyle(obj,false)[attr];

}

}

}

//offsetWidth获取的是元素实际的宽度(包括边框和内边距)

//只要是多物体运动,所有的属性都不能共用

9、多物体同时运动动画(支持链式动画)

多物体同时运动动画

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,tr,td {margin:0;padding:0; font-size:12px;}

table {border-collapse:collapse;border-spacing:0;}

fieldset,img {border:0}

address,caption,cite,code,dfn,em,strong,th,var {font-style:normal;font-weight:normal}

ol,ul {list-style:none}

caption,th,td{text-align:center}

h1,h2,h3,h4,h5,h6 {font-size:100%;font-weight:normal}

q:before,q:after {content:''}

abbr,acronym { border:0}

.odiv{position:relative;}

.odiv ul li{width:200px; height:100px; background:yellow; margin-bottom:20px; border:2px solid #000;}

#li1{opacity:0.3;filter:alpha(opacity:30);}

window.onload = function(){

var li1 = document.getElementById('li1');

li1.onmouseover = function(){

startMov(li1,{width:201,height:200,opacity:100});

};

li1.onmouseout = function(){

startMov(li1,{width:200,height:100,opacity:30});

};

li1.timer = null;

function startMov(obj,json,fn){//fn回调函数

clearInterval(obj.timer);//执行动画之前清除动画

var flag = true;//是否动画都完成了

obj.timer = setInterval(function(){

for(var attr in json){

var icur = 0;

if(attr == 'opacity'){

icur = Math.round(parseFloat(getStyle(obj,attr))*100);//转换成整数,并且四舍五入下

//计算机在计算小数的时候往往是不准确的!

}

else{

icur = parseInt(getStyle(obj,attr));

}

var speed =0;

speed = (json[attr] - icur)/8;

speed = speed>0?Math.ceil(speed):Math.floor(speed);

if(icur != json[attr]){

flag = false;

}

if(attr == 'opacity'){

obj.style.filter = 'alpha(opacity:'+(icur+speed)+')';

obj.style.opacity = (icur+speed)/100;

}

else{

obj.style[attr] = icur+speed+'px';

}

if(flag){

clearInterval(obj.timer);

if(fn){

fn();

}

}

}

},30);

}

function getStyle(obj,attr)

{

if(obj.currentStyle){

return obj.currentStyle[attr];

}

else{

return getComputedStyle(obj,false)[attr];

}

}

}

//offsetWidth获取的是元素实际的宽度(包括边框和内边距)

//只要是多物体运动,所有的属性都不能共用

最后一个动画效果完善了上述所有动画的代码,自己可以根据上述的代码进行扩展!

其实这九种原生js动画效果,都有独特之处,每个源码都可以直接复制运行,希望对大家掌握js动画有所帮助。

js动画与html动画效果,九种原生js动画效果相关推荐

  1. html js 遍历数组,分享几种原生JS数组遍历的方法和应用

    数组遍历,对于前后端开发人员,是必须掌握的方法,那么数组遍历有哪些方法呢? OK,今天就分享几种原生JS方法,从原生开始学习,有助于大家应用到各种框架[小程序.三大框架等]中去,毕竟原生才是基本.一共 ...

  2. html制作翻页效果代码,使用原生JS实现滚轮翻页效果的示例代码

    一.滚轮事件 当用户通过鼠标滚轮与页面交互.在垂直方向上滚动页面时,就会触发mousewheel事件,这个事件就是实现全屏切换效果需要用到的.在IE6, IE7, IE8, Opera 10+, Sa ...

  3. js轮播图片小圆点变化_原生js实现轮播图(两种方法)

    第一种: 这个是之前写的,比较草率,没有注释,如果这个看不懂就去看第二个,比较仔细,主要是了解他,后面都会有一些插件来使用,很方便,只要几行代码就可写出各种各样的代码,所以,不懂的话,不要太在意, 第 ...

  4. js 弹出一个页面 html页面刷新,原生js刷新当前页面与跳转页面的几种方法及区别总结...

    在面向浏览器的web开发过程中,我们经常与JavaScript打交道,web开发页面路由跳转.刷新当前页面更是经常遇到的事.浏览器提供了至少3-5种的方式可以实现当前页面刷新或者跳转当前应用的其他页面 ...

  5. 聚划算导航栏的反弹效果代码 纯原生js实现

    一.首先是HTML代码:  记得在头部加一个移动端的视口 <header><div class="logo">聚划算</div><div ...

  6. JavaScript中的懒加载——概念,作用,原理,实现步骤,以及3种原生js实现方式

    1.什么是懒加载? 懒加载也就是延迟加载. 当访问一个页面的时候,先把img元素或是其他元素的背景图片路径替换成一张大小为1*1px图片的路径(这样就只需请求一次,俗称占位图), 只有当图片出现在浏览 ...

  7. 前端实现div标签p标签等吸顶效果【Vue+原生JS组合写法】

  8. js购物车功能php,实战项目:用原生JS实现一个购物车的功能

    实战:购物车功能 一.两个实用的数组函数 1.1 Array.every() every()方法传入回调函数,这个回调函数有三个参数,分别是: item:用于测试的当前值: index:当前测试值的索 ...

  9. HTML设置页面动画效果有几种,前端制作动画的几种方式(css3,js)

    制作动态的网页是是前端工程师必备的技能,很好的实现动画能够极大的提高用户体验,增强交互效果,那么动画有多少实现方式,一直对此有选择恐惧症的我就总结一下,以便在开发的时候选择最好的实现方式. 1.css ...

最新文章

  1. legnano卡片 里怎么添加成员,设置标签,添加检查项?
  2. 《淘宝网开店 拍摄 修图 设计 装修 实战150招》一一1.17 如何选择合适的拍摄地点...
  3. Range在各浏览器下的问题和常见处理办法
  4. linux gcc 静态编译,GCC 程序编译的静态链接和动态链接
  5. JAVA字符串数学公式运算-辅助类-支持浮点数错误纠正-低消耗-高可用性-小数点后面保留16位小数
  6. 我最喜欢的Java高级开发人员书籍
  7. 系统地学习JavaScript
  8. 小贷公司的风险成因及应对策略——策略篇
  9. 大数据全球战略布局全面升级
  10. Java基础篇:如何使用continue语句
  11. arm 基础:Nand Flash与Nor Flash的区别
  12. go var 一个整数_Go语言基础之基本数据类型
  13. MOON.ORM 3.0 具体使用方法及下载
  14. 路由器的硬件测试软件,路由器也跑分?路由器测试App路小胖体验
  15. 130多个免费接口全部开放,涵盖天气数据、环境数据、旅游景点数据、位置数据、雷达、云图等等,可在线直接提供服务,免费的服务接口
  16. 【SVM分类】基于改进鲸鱼算法优化最小二乘支持向量机实现数据分类matlab代码
  17. html5 扩展 cs6,Dreamweaver CS6提高了HTML5工具的效率
  18. 终端进入服务器,mac使用Shell(终端)SSH连接远程服务器的方法
  19. 数据库并发抢红包_Redis乐观锁解决高并发抢红包的问题
  20. 如何往 Apple Watch 中添加音乐

热门文章

  1. 在本地计算机无法启动mssqlserver服务,无法启动服务SQL Server(MSSQLSERVER)
  2. 计算机打开怎么没有桌面二字,电脑没法打字什么原因
  3. java数组怎么定义?java数组定义方法
  4. '技术团队的成长与提升 - 通过分享进行有效的输出' ,写个标准格式记录下...
  5. 外部排序——大文件排序
  6. java moco_moco入门
  7. 【Scratch-外观模块】角色大小指令
  8. 闵老板论文写作课程感悟
  9. 现阶段大数据算法的困境是什么?
  10. Python 机器学习实战 —— 无监督学习(上)