Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

libai / footsen

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • footsen
  • js
  • lang.js
Find file
BlameHistoryPermalink
  • dabai's avatar
    footseen · cf7cbcb7
    dabai committed 5 years ago
    cf7cbcb7
lang.js 2.63 KB
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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
var swiper1 = new Swiper('.swiper-container1', {
  	loop: true,
    speed:300,
    observer: true,	
    observerParents: true,
    autoplayDisableOnInteraction: false,
	  autoplay : {
	    delay:3000
	  },
	   onSlideChangeEnd: function(swipers){ 
        swipers.update(); //swiper更新
    } 
});
var swiper2 = new Swiper('.swiper-container2', {
	    loop: true,
	    speed:300,
	    observer: true,	
	    observerParents: true,
	    autoplayDisableOnInteraction: false,
		  autoplay : {
		    delay:3000
		  },
		   onSlideChangeEnd: function(swipers){ 
	        swipers.update(); //swiper更新
	    } 	
		});
var langStr =(navigator.language || navigator.browserLanguage).toLowerCase();
if(sessionStorage.lang == undefined || sessionStorage.lang == 'undefined'){
	
	if(langStr.indexOf('ar')>=0){
		sessionStorage.lang = 7;
		$('.L_En').hide();
		$('.L_Ar').show();
		$('.langTitle font').html('العربية');
	} else {
		sessionStorage.lang = 1;
		$('.L_En').show();
		$('.L_Ar').hide();
		$('.langTitle font').html('English');
	}
} else {
	 if(sessionStorage.lang == 7){
		$('.L_En').hide();
		$('.L_Ar').show();
		$('.langTitle font').html('العربية');
	} else {
		$('.L_En').show();
		$('.L_Ar').hide();
		$('.langTitle font').html('English');
	}
}

$(function(){
	$('.langTitle').on('click',function(){
		$('.langList').show();
		$('.langTitle img').attr('src','https://footseen.com/img/up.png');
	})
	$('.langList p').on('click',function(e){
		$('.langTitle font').html($(this).html());
		$('.langList').hide();
		$('.langTitle img').attr('src','https://footseen.com/img/down.png');
		sessionStorage.lang = $(this).attr('data-lang');
		lang();
		e.stopPropagation();
	})
})

function lang(){
	if(sessionStorage.lang == 1){		
		this.swiper2.destroy(false);
		this.swiper2 = new Swiper('.swiper-container2', {
		  	loop: true,
		    speed:300,
		    observer: true,	
		    observerParents: true,
		    autoplayDisableOnInteraction: false,
			  autoplay : {
			    delay:3000
			  },
			   onSlideChangeEnd: function(swipers){ 
		        swipers.update(); //swiper更新
		    } 
		});
		$('.L_Ar').hide();
		$('.L_En').show();
		$('.langTitle font').html('English');
	} else if(sessionStorage.lang == 7){
		
		this.swiper1.destroy(false);
		this.swiper1 = new Swiper('.swiper-container1', {
			  	loop: true,
			    speed:300,
			    observer: true,	
			    observerParents: true,
			    autoplayDisableOnInteraction: false,
				  autoplay : {
				    delay:3000
				  },
				   onSlideChangeEnd: function(swipers){ 
			        swipers.update(); //swiper更新
			    } 
			});
	 $('.L_En').hide();
		$('.L_Ar').show();
		$('.langTitle font').html('العربية');
		}
}