innerfade.js 링크

<script type="text/javascript" src="jquery.innerfade.js"></script>



jqeury 문법작성

$(document).ready(function(){

$("#inner_fade").innerfade({

animationtyoe:'fade',

speed:750,

timeout:2000,

type: 'random',

containerheight:'350px'

});

});


반복할 이미지 3개

<div id="inner_fade">


<img src="sub1.png">

 <img src="sub2.png">   

 <img src="sub3.png">


</div>



'JAVA > Jquery' 카테고리의 다른 글

Juery side메뉴  (0) 2015.08.06
Jqeury 메뉴만들기  (0) 2015.08.05
jqeury plugin 50개  (0) 2015.08.05
Jquery div안에 페이지 불러오기  (2) 2015.08.05
Jquery - google,microsoft CDN  (0) 2015.07.30
블로그 이미지

왕왕왕왕

,

<!DOCTYPE html>

<html>

<head>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>

<script>

$(document).ready(function(){

    $("#div1").load("가져올페이지");

});

</script>

</head>

<body>


<div id="div1" style="border: solid;width:400px; height:400px; "></div>

//div안에 페이지 불러옴.



</body>

</html>



'JAVA > Jquery' 카테고리의 다른 글

Juery side메뉴  (0) 2015.08.06
Jqeury 메뉴만들기  (0) 2015.08.05
jqeury plugin 50개  (0) 2015.08.05
Jqeury innerfade 슬라이드  (0) 2015.08.05
Jquery - google,microsoft CDN  (0) 2015.07.30
블로그 이미지

왕왕왕왕

,

#div1 {

border: solid;

width: 500px;

height: 500px;

text-align: center;

}


#div2 {

width: 300px;

height: 300px;

border: solid;

text-align: center;

display: inline-block;

margin: 90px 0; //마진에 첫번째 px을 조정해야됨

}


#div3 {

width: 50px;

height: 50px;

border: solid;

display: inline-block;

margin: 120px 0; //여기 마진도

}

'JAVA > CSS' 카테고리의 다른 글

CSS div 영역나누기  (0) 2015.08.24
CSS 텍스트 윤곽선 아웃라인 그림자효과  (0) 2015.08.20
css 스타일 필터효과  (0) 2014.09.26
css 기타 스타일 (커서,스크롤바)  (0) 2014.09.26
css 속성  (0) 2014.09.24
블로그 이미지

왕왕왕왕

,


구글

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>


마이크로

<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.11.3.min.js"></script>

'JAVA > Jquery' 카테고리의 다른 글

Juery side메뉴  (0) 2015.08.06
Jqeury 메뉴만들기  (0) 2015.08.05
jqeury plugin 50개  (0) 2015.08.05
Jqeury innerfade 슬라이드  (0) 2015.08.05
Jquery div안에 페이지 불러오기  (2) 2015.08.05
블로그 이미지

왕왕왕왕

,

                      table = new JTable(model){

@Override

public boolean isCellEditable(int row11, int column11) {

// TODO 자동 생성된 메소드 스텁

return false;

}

};

블로그 이미지

왕왕왕왕

,

package kkk;


interface Readable1 {

public void read();

}


class OuterClass2 {

private String myName;


OuterClass2(String name) {

myName = name;

}


public Readable1 createLocalClassInst(final int instID) {

return new Readable1() {

public void read() {

System.out.println("Outer inst name: " + myName);

System.out.println("Local inst ID: " + instID);

}

};

}

}


class LocalParamAnonymous {

public static void main(String[] args) {

OuterClass2 out = new OuterClass2("My Outer Class");

Readable1 localInst1 = out.createLocalClassInst(111);

localInst1.read();

Readable1 localInst2 = out.createLocalClassInst(222);

localInst2.read();

}

}

블로그 이미지

왕왕왕왕

,


블로그 이미지

왕왕왕왕

,

//로컬 inner 클래스

//로컬클래스를 생성하는 메소드를 외부클래스에서 만든다

//그안에 로컬클래스를 작성하고 작성과 동시에 기능을할 코드작성

//메소드 리턴값으로 로컬클래스 생성자를 리턴한다.

//main부분에서 생성할때 외부클래스 . 로컬클래스로 쓸수있는것이다.



interface Readable {

public void read();

}


class OuterClass1 {

private String myName;


OuterClass1(String name) {

myName = name;

}


public Readable createLocalClassInst() {

class LocalClass implements Readable {

public void read() {

System.out.println("Outer inst name: " + myName);

}

}


return new LocalClass();

}

}


class LocalClassTest {

public static void main(String[] args) {

Readable out1 = new OuterClass1("First").createLocalClassInst();

out1.read();


Readable out2 = new OuterClass1("Second").createLocalClassInst();

out2.read();

}

}

블로그 이미지

왕왕왕왕

,