Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- react
- async
- app.post
- extends
- Filter
- 배열중복요소제거
- TS
- reactnative
- map
- 페이지네이션
- mainapplication.kt
- generic
- 글또10기
- set
- 스크롤이벤트
- app:compiledebugkotlin
- 이진탐색
- supabase 페이지네이션
- 리액트네이티브아이콘
- 상속
- array
- javascript
- materialicons
- 타입스크립트
- 안드로이드빌드에러
- interface
- meatadata
- Spring
- Next.js
- 슬라이딩윈도우
Archives
- Today
- Total
rhanziy
fullpage.js 플러그인 옵션 본문
https://jineecode.tistory.com/98
https://m.blog.naver.com/coding-/221432074882
script afterload, onleave함수 사용법
$(document).ready(function(e) {
$('#fullpage').fullpage ({
autoScrolling:true,
scrollHorizontally:true,
parallax:true,
navigation:true,
anchors:['first','second','third','fourth','fifth'],
css3:false,
afterLoad: function(anchorLink, index) {
var indexNum = $(this).index( );
if (indexNum > 1 ) {
this.find('.bottom2top-txt').addClass('on');
this.find('.text-box p').addClass('on');
}
},
onLeave : function (index, nextIndex, direction){
if (index > 1 && direction == 'down' || direction == 'up'){
this.find('.bottom2top-txt').removeClass('on');
this.find('.text-box p').removeClass('on');
}
}
});
섹션별로(anchor 값) 다른 nav dot 을 주고싶을때,
.fp-viewing-anchor명 #fp-nav ul li a span { } 등등 섹션마다 다른 인터렉션 표현 가능
.fp-viewing-third #fp-nav ul li a span {
background-color:rgba(255, 255, 255, 0.8);
}
background-attachment 사용하려면 fullpage.js스크립트태그에
css3:false나 autoscrolling:false해줘야한다. 충돌문제있음.
'Html_css_js' 카테고리의 다른 글
javascript. script태그 async 와 defer의 차이점 (0) | 2022.01.16 |
---|---|
css.반응형 폰트사이즈 관련 팁 (0) | 2021.12.30 |
css.background, drop-shadow (0) | 2021.12.20 |
js.index번호, 객체 복제 (0) | 2021.12.20 |
js.스크롤이벤트 fade (0) | 2021.12.17 |
Comments