다이나믹한 화면움직임

 
이런화면.. css로 꾸미는거맞나요?
 
아니면 다이나믹 코드로 입힌건가요?
 
저런 소스좀 구하고싶어요. 좀 알려주세요
|

댓글 2개

jQuery 로 구동되는것이구요.

코드는 대충 저 사이트에서 js 파일만 뽑아보니 다음과 같습니다.


(function($) {

var NivoSlider = function(element, options){
//Defaults are below
var settings = $.extend({}, $.fn.nivoSlider.defaults, options);

//Useful variables. Play carefully.
var vars = {
currentSlide: 0,
currentImage: '',
totalSlides: 0,
running: false,
paused: false,
stop: false
};

//Get this slider
var slider = $(element);
slider.data('nivo:vars', vars);
slider.css('position','relative');
slider.addClass('nivoSlider');

//Find our slider children
var kids = slider.children();
kids.each(function() {
var child = $(this);
var link = '';
if(!child.is('img')){
if(child.is('a')){
child.addClass('nivo-imageLink');
link = child;
}
child = child.find('img:first');
}
//Get img width & height
var childWidth = child.width();
if(childWidth == 0) childWidth = child.attr('width');
var childHeight = child.height();
if(childHeight == 0) childHeight = child.attr('height');
//Resize the slider
if(childWidth > slider.width()){
slider.width(childWidth);
}
if(childHeight > slider.height()){
slider.height(childHeight);
}
if(link != ''){
link.css('display','none');
}
child.css('display','none');
vars.totalSlides++;
});

//If randomStart
if(settings.randomStart){
settings.startSlide = Math.floor(Math.random() * vars.totalSlides);
}

//Set startSlide
if(settings.startSlide > 0){
if(settings.startSlide >= vars.totalSlides) settings.startSlide = vars.totalSlides - 1;
vars.currentSlide = settings.startSlide;
}

//Get initial image
if($(kids[vars.currentSlide]).is('img')){
vars.currentImage = $(kids[vars.currentSlide]);
} else {
vars.currentImage = $(kids[vars.currentSlide]).find('img:first');
}

//Show initial link
if($(kids[vars.currentSlide]).is('a')){
$(kids[vars.currentSlide]).css('display','block');
}

//Set first background
slider.css('background','url("'+ vars.currentImage.attr('src') +'") no-repeat');

//Create caption
slider.append(
$('<div class="nivo-caption"><p></p></div>').css({ display:'none', opacity:settings.captionOpacity })
);

// Cross browser default caption opacity
$('.nivo-caption', slider).css('opacity', 0);

// Process caption function
var processCaption = function(settings){
var nivoCaption = $('.nivo-caption', slider);
if(vars.currentImage.attr('title') != '' && vars.currentImage.attr('title') != undefined){
var title = vars.currentImage.attr('title');
if(title.substr(0,1) == '#') title = $(title).html();

if(nivoCaption.css('opacity') != 0){
nivoCaption.find('p').stop().fadeTo(settings.animSpeed, 0, function(){
$(this).html(title);
$(this).stop().fadeTo(settings.animSpeed, 1);
});
} else {
nivoCaption.find('p').html(title);
}
nivoCaption.stop().fadeTo(settings.animSpeed, settings.captionOpacity);
} else {
nivoCaption.stop().fadeTo(settings.animSpeed, 0);
}
}

//Process initial caption
processCaption(settings);

//In the words of Super Mario "let's a go!"
var timer = 0;
if(!settings.manualAdvance && kids.length > 1){
timer = setInterval(function(){ nivoRun(slider, kids, settings, false); }, settings.pauseTime);
}

//Add Direction nav
if(settings.directionNav){
slider.append('<div class="nivo-directionNav"><a class="nivo-prevNav" title="Prev"></a><a class="nivo-nextNav" title="Next"></a></div>');

//Hide Direction nav
if(settings.directionNavHide){
$('.nivo-directionNav', slider).hide();
slider.hover(function(){
$('.nivo-directionNav', slider).show();
}, function(){
$('.nivo-directionNav', slider).hide();
});
}

$('a.nivo-prevNav', slider).live('click', function(){
if(vars.running) return false;
clearInterval(timer);
jquery 부분을 제외하면 대부분 css에서 컨트롤 하지만 모던브라우저가 아니면 표현하지 못합니다.
css media 부분이 가로폭에 따라 대응하는 스타일이죠~

저도 자주 쓰긴 합니다만, ie7, 8같이 표현 못하는 경우는 걍 min-width로 고정시켜버리면 문제는 끝...이라...-0-;
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

태그 필터 (최대 3개) 전체 개발자 소스 기타 mysql 팁자료실 javascript php linux flash 정규표현식 jquery node.js mobile 웹서버 os 프로그램 강좌 썸네일 이미지관련 도로명주소 그누보드5 기획자 견적서 계약서 기획서 마케팅 제안서 seo 통계 서식 통계자료 퍼블리셔 html css 반응형 웹접근성 퍼블리싱 표준화 반응형웹 홈페이지기초 부트스트랩 angularjs 포럼 스크린리더 센스리더 개발자톡 개발자팁 퍼블리셔톡 퍼블리셔팁 기획자톡 기획자팁 프로그램강좌 퍼블리싱강좌
+
제목 글쓴이 날짜 조회
12년 전 조회 2,080
12년 전 조회 6,404
12년 전 조회 7,463
12년 전 조회 2,398
12년 전 조회 2,169
12년 전 조회 1,795
12년 전 조회 2,317
12년 전 조회 2,197
12년 전 조회 2,191
12년 전 조회 1,985
12년 전 조회 2,241
12년 전 조회 2,695
12년 전 조회 2,823
12년 전 조회 2,107
12년 전 조회 3,191
12년 전 조회 2,012
12년 전 조회 2,316
12년 전 조회 3,032
12년 전 조회 3,267
12년 전 조회 3,089
12년 전 조회 3,194
12년 전 조회 3,767
12년 전 조회 2,370
12년 전 조회 2,887
12년 전 조회 5,014
12년 전 조회 2,854
12년 전 조회 2,925
12년 전 조회 2,708
12년 전 조회 2,335
12년 전 조회 2,574
12년 전 조회 2,477
12년 전 조회 2,672
12년 전 조회 3,300
12년 전 조회 2,880
12년 전 조회 2,707
12년 전 조회 5,298
12년 전 조회 2,928
12년 전 조회 2,190
12년 전 조회 2,892
12년 전 조회 1,998
12년 전 조회 2,245
12년 전 조회 2,659
12년 전 조회 2,546
12년 전 조회 6,541
12년 전 조회 3,899
12년 전 조회 3,174
12년 전 조회 1,952
12년 전 조회 3,461
12년 전 조회 2,118
12년 전 조회 2,443
12년 전 조회 2,173
12년 전 조회 4,715
12년 전 조회 2,072
12년 전 조회 4,942
12년 전 조회 2,663
12년 전 조회 2,925
12년 전 조회 3,549
12년 전 조회 3,617
12년 전 조회 1,862
12년 전 조회 1,957
12년 전 조회 2,618
12년 전 조회 1,944
12년 전 조회 2,100
12년 전 조회 7,888
12년 전 조회 1,885
12년 전 조회 2,148
12년 전 조회 1,815
12년 전 조회 1,843
12년 전 조회 2,099
12년 전 조회 2,066
12년 전 조회 3,030
12년 전 조회 3,074
12년 전 조회 2,653
12년 전 조회 6,535
12년 전 조회 2,820
12년 전 조회 2,904
12년 전 조회 2,299
12년 전 조회 3,290
12년 전 조회 2,704
12년 전 조회 4,374
12년 전 조회 3,886
12년 전 조회 3,225
12년 전 조회 3,709
12년 전 조회 3,138
12년 전 조회 2,974
12년 전 조회 2,321
12년 전 조회 2,449
12년 전 조회 6,897
12년 전 조회 3,951
12년 전 조회 4,424
12년 전 조회 3,058
12년 전 조회 2,770
12년 전 조회 2,151
12년 전 조회 3,129
12년 전 조회 2,261
12년 전 조회 2,779
12년 전 조회 4,033
12년 전 조회 3,636
12년 전 조회 2,990
12년 전 조회 7,927