面向对象学习

简介: $(document).ready(function(){ /*$('.box-mark li').mouseenter(function(){ $(this).find('.
$(document).ready(function(){
    /*$('.box-mark li').mouseenter(function(){
        $(this).find('.img-text').stop().animate({'bottom':0},600)
    });
    $('.box-mark li').mouseleave(function(){
        $(this).find('.img-text').stop().animate({'bottom':'-100%'},600)
    })*/
    function Mark(li){
        this.li=li;
    }
    Mark.prototype.move=function(text){
        $(this.li).mouseenter(function(){
            $(this).find(text).stop().animate({'bottom':0},600)
        })
        $(this.li).mouseleave(function(){
            $(this).find(text).stop().animate({'bottom':'-100%'},600)
        })
    }
    var mark=new Mark('.box-mark li');
    mark.move('.img-text');
}) 

代码还有些不完善,需要继续学习

相关文章
|
5月前
|
Java 物联网 测试技术
Java面向对象程序设计3面向对象基础
Java面向对象程序设计3面向对象基础
317 0
|
3月前
|
Java C++ iOS开发
|
4月前
|
存储 算法 安全
面向对象程序设计C++
面向对象程序设计C++
|
5月前
|
C++
25面向对象的程序设计
25面向对象的程序设计
34 1
|
程序员 测试技术 C语言
c++面向对象程序设计入门
c++面向对象程序设计入门
151 0
面向对象程序设计-第一章:面向对象程序设计基础
面向对象程序设计-第一章:面向对象程序设计基础
170 0
面向对象程序设计-第一章:面向对象程序设计基础
|
算法 JavaScript Java
面向对象程序设计
面向对象程序设计是一种编程范式或编程风格。 面向对象的程序是由类和对象组成的(以类和对象作为组织代码的基本单元),并将封装、抽象、继承、多态这四个特性,作为程序设计和实现的基础。
125 0
|
存储 开发者 Python
面向对象练习 | 学习笔记
快速学习 面向对象练习
面向对象练习 | 学习笔记
|
开发者 Python
面向对象的介绍 | 学习笔记
快速学习 面向对象的介绍
102 0
面向对象的介绍 | 学习笔记
|
Python
面向对象程序设计中的一些问题
面向对象程序设计中的一些问题
152 0
下一篇
无影云桌面