(function($){
$(document).ready(function(){
//setting
//on off rollover,advance load
var src_on = "_on.",
src_off = "_off.",
//to page,to top
offset = 0,
scroll_speed = "slow",
//opacty rollover
on_speed = 0,
off_speed = "fast",
transp = 0.7,
//pngfix exclusion
png_exc = "exc";
//hover
$(".hover").hover(
function(){
$(this).stop(true, true).fadeTo(300,0.5);
},
function(){
$(this).stop(true, true).fadeTo(300,1.0);
});
//to page
$("a.to_page").click(function(){
var href = $(this).attr("href");
href = href.split("#");
if($("#" + href[1]).size() > 0 || href[0] == ""){
var p = $("#" + href[1]).offset().top - offset;
$("html,body").animate({
scrollTop:p
},scroll_speed);
return false;
}
});
//to top
$("a.to_top").click(function(){
$("html,body").animate({
scrollTop:0
},scroll_speed);
return false;
});
//slide
var slick = $('.slide01').slick({
dots: false,
infinite: true,
speed: 300,
slidesToShow: 1,
autoplay: true,
adaptiveHeight: true
});
$("#tab li").click(function() {
var num = $("#tab li").index(this);
$(".content_wrap").addClass('disnon');
$(".content_wrap").eq(num).removeClass('disnon');
$("#tab li").removeClass('tab_select');
$(this).addClass('tab_select')
});
$(function() { var topBtn = $('.ft01'); topBtn.hide();
$(window).scroll(function () { if ($(this).scrollTop() > 1000) { topBtn.fadeIn(); } else { topBtn.fadeOut(); } }); });
$(function () { var $body = $('.ft01'); $(this).scroll(function() { var topOffset = $('.block10').offset().top; var navTypeAOffsetTop = parseInt(topOffset) - 900; if($(this).scrollTop() > navTypeAOffsetTop) { $body.addClass('is-fixed'); } else { $body.removeClass('is-fixed'); } }); });
height_init(".tile01",3);
height_init(".tile02",3);
var HeightArrange = function(targetEl) {
this.targetEl = $(targetEl);
};
HeightArrange.prototype.fn = function() {
var that = this;
$(window).on('load resize', function() {
var heightList = new Array();
var $winWidth = $(window).width();
that.targetEl.css({ 'min-height': '100%' });
that.targetEl.each(function(index) {
var $eachThis = $(this);
setTimeout(function() {
heightList[index] = $eachThis.outerHeight();
var maxH = Math.max.apply(null,heightList);
that.targetEl.css({ 'min-height': maxH + 'px' });
},500)
});
});
};
var HeightArrangeText = new HeightArrange('.tile03');
HeightArrangeText.fn();
var HeightArrangeText2 = new HeightArrange('.tile04');
HeightArrangeText2.fn();
});
$(window).load(function(){
//height_init
height_init(".tile01",2);
height_init(".tile02",4);
height_init(".tile03",3);
height_init(".tile04",3);
height_init(".tile05",3);
height_init(".tile06",4);
height_init(".STF_WEBNAME",4);
height_init("#main .cont02 .box01",2);
});
})(jQuery);
//height initialization
function height_init(cls,num){
num = num || 1;
var temp = new Array();
var i = 0;
jQuery(cls).each(function(){
var t = jQuery(this).height().toString();
temp[i] = t;
i++;
});
var h = new Array();
var i = num;
jQuery.each(temp,function(key,val){
if(num > 1){
var j = Math.floor((i / num) - 1);
if(h[j] == null || h[j] < Number(val)){
h[j] = Number(val);
}
}else{
if(h[0] == null || h[0] < Number(val)){
h[0] = Number(val);
}
}
i++;
});
var i = num;
jQuery(cls).each(function(){
if(num > 1){
var j = Math.floor((i / num) - 1);
jQuery(this).height(h[j]);
}else{
jQuery(this).height(h[0]);
}
i++;
});
}
$(function(){
$(window).bind("scroll", function() {
if ($(this).scrollTop() > 150) {
$(".pagetop").fadeIn();
} else {
$(".pagetop").fadeOut();
}
// ドキュメントの高さ
scrollHeight = $(document).height();
// ウィンドウの高さ+スクロールした高さ→ 現在のトップからの位置
scrollPosition = $(window).height() + $(window).scrollTop();
// フッターの高さ
footHeight = $("#footerwrap").height();
// スクロール位置がフッターまで来たら
if ( scrollHeight - scrollPosition <= footHeight ) {
// ページトップリンクをフッターに固定
$(".pagetop a").css({"position":"fixed","bottom": "30px"});
} else {
// ページトップリンクを右下に固定
$(".pagetop a").css({"position":"fixed","bottom": "30px"});
}
});
});