'JAVA > Jquery' 카테고리의 다른 글
Juery side메뉴 (0) | 2015.08.06 |
---|---|
Jqeury 메뉴만들기 (0) | 2015.08.05 |
Jqeury innerfade 슬라이드 (0) | 2015.08.05 |
Jquery div안에 페이지 불러오기 (2) | 2015.08.05 |
Jquery - google,microsoft CDN (0) | 2015.07.30 |
Juery side메뉴 (0) | 2015.08.06 |
---|---|
Jqeury 메뉴만들기 (0) | 2015.08.05 |
Jqeury innerfade 슬라이드 (0) | 2015.08.05 |
Jquery div안에 페이지 불러오기 (2) | 2015.08.05 |
Jquery - google,microsoft CDN (0) | 2015.07.30 |
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>
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>
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; //여기 마진도
}
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>
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;
}
};
자바 피보나치수열 (0) | 2015.09.10 |
---|---|
자바 SQL 소스 (0) | 2015.08.25 |
자바 inner 클래스 - anonymous inner 클래스 (0) | 2015.07.06 |
자바 inner 클래스 - anonymous inner 클래스 (0) | 2015.07.06 |
자바 inner 클래스 - local inner 클래스 (0) | 2015.07.06 |
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();
}
}
자바 SQL 소스 (0) | 2015.08.25 |
---|---|
자바 Swing Jtable 에디터 사용안하기 (1) | 2015.07.08 |
자바 inner 클래스 - anonymous inner 클래스 (0) | 2015.07.06 |
자바 inner 클래스 - local inner 클래스 (0) | 2015.07.06 |
자바 inner 클래스 - static inner 클래스 (0) | 2015.07.06 |
자바 Swing Jtable 에디터 사용안하기 (1) | 2015.07.08 |
---|---|
자바 inner 클래스 - anonymous inner 클래스 (0) | 2015.07.06 |
자바 inner 클래스 - local inner 클래스 (0) | 2015.07.06 |
자바 inner 클래스 - static inner 클래스 (0) | 2015.07.06 |
자바 inner 클래스 - instance inner 클래스 (0) | 2015.07.06 |