-->

Java Script

// =========================================== // -{ Modif : by Santa Mars }- // =========================================== // _ +-------------------------------------------+ _ // /o)| santa-mars.blogspot.com |(o\ // / / | Copyright @ 09 Januari 2014 | \ \ // ( (_ | _ jquery-leta-vcard.js _ | _) ) // ((\ \)+-/o)-----------------------------------(o\-+(/ /)) // (\\\ \_/ / \ \_/ ///) // \ / __ \ / // \____/ | | \____/ // +++++++++++++++++++++++++++++++++++ // + ** + // + Please Like & Follow Us at: + // + THANKS TO ALL + // + >> www.facebook.com/santa.mars + // + >> www.twitter.com/santa_mars + // + ** + // +++++++++++++++++++++++++++++++++++ // | | // | | // /| |\ // $(function () { 'use strict'; /* --------------------------------------------------------------------------- */ /* Flex Slider /* --------------------------------------------------------------------------- */ (function () { $('.flexslider').flexslider({ animation: 'fade', //String: Select your animation type, 'fade' or 'slide' slideDirection: 'horizontal', //String: Select the sliding direction, 'horizontal' or 'vertical' slideshow: true, //Boolean: Animate slider automatically slideshowSpeed: 3000, //Integer: Set the speed of the slideshow cycling, in milliseconds animationDuration: 600, //Integer: Set the speed of animations, in milliseconds directionNav: true, //Boolean: Create navigation for previous/next navigation? (true/false) controlNav: true, //Boolean: Create navigation for paging control of each clide? Note: Leave true for manualControls usage keyboardNav: true, //Boolean: Allow slider navigating via keyboard left/right keys mousewheel: false, //Boolean: Allow slider navigating via mousewheel prevText: '', //String: Set the text for the 'previous' directionNav item nextText: '', //String: Set the text for the 'next' directionNav item pausePlay: false, //Boolean: Create pause/play dynamic element pauseText: '', //String: Set the text for the 'pause' pausePlay item playText: 'Play', //String: Set the text for the 'play' pausePlay item randomize: false, //Boolean: Randomize slide order slideToStart: 0, //Integer: The slide that the slider should start on. Array notation (0 = first slide) animationLoop: true, //Boolean: Should the animation loop? If false, directionNav will received 'disable' classes at either end pauseOnAction: true, //Boolean: Pause the slideshow when interacting with control elements, highly recommended. pauseOnHover: false, //Boolean: Pause the slideshow when hovering over slider, then resume when no longer hovering controlsContainer: '', //Selector: Declare which container the navigation elements should be appended too. Default container is the flexSlider element. Example use would be '.flexslider-container', '#container', etc. If the given element is not found, the default action will be taken. manualControls: '', //Selector: Declare custom control navigation. Example would be '.flex-control-nav li' or '#tabs-nav li img', etc. The number of elements in your controlNav should match the number of slides/tabs. start: function () { }, //Callback: function(slider) - Fires when the slider loads the first slide before: function () { }, //Callback: function(slider) - Fires asynchronously with each slider animation after: function () { }, //Callback: function(slider) - Fires after each slider animation completes end: function () { } //Callback: function(slider) - Fires when the slider reaches the last slide (asynchronous) }); })(); /* --------------------------------------------------------------------------- */ /* Info slider /* --------------------------------------------------------------------------- */ (function () { var $slideWrap = $('.info-slide-wrapper'), scrollSlider = $slideWrap.position().left - $('.info-slide-item').outerWidth(); setInterval(function () { $slideWrap.animate({left: scrollSlider}, 500, function () { $slideWrap .find('.info-slide-item:first') .appendTo($slideWrap) .parent() .css({'left': 0}); }); }, 6000); })(); /* ---------------------------------------------------------------------- */ /* Easytabs /* ---------------------------------------------------------------------- */ (function () { // Run easytabs $('#content-wrapper').easytabs({ animate: true, updateHash: true, transitionIn: 'slideDown', transitionOut: 'slideUp', animationSpeed: 600, tabs: '.tab', tabActiveClass: 'active' }); })(); /* ---------------------------------------------------------------------- */ /* Logo, Slider and audio /* ---------------------------------------------------------------------- */ (function () { // Needed variables var $logo = $('#logo'), $slider = $('.slider-wrapper'), audio = document.getElementsByTagName('audio')[0]; $('.tab-notmain').click(function () { $logo.fadeIn('slow'); $slider.slideUp(500); }); $('.tab-main').click(function () { $logo.fadeOut('slow'); $slider.delay(1000).slideDown(500); }); // Audio $('.tab').click(function () { audio.play(); }); })(); $( "#content-wrapper" ).prepend( ""); /* ---------------------------------------------------------------------- */ /* Portfolio /* ---------------------------------------------------------------------- */ (function () { // Needed variables var $container = $('#portfolio-content'), $filter = $('#portfolio-filter'); if (document.location.hash.substr(1) === 'portfolio') { $container.isotope(); } else { $(window).hashchange(function () { if (document.location.hash.substr(1) === 'portfolio') { $container.isotope(); } }); } $container.imagesLoaded(function () { $container.isotope({ filter: '*', layoutMode: 'masonry', animationOptions: { duration: 750, easing: 'linear' } }); }); // Isotope Filter $filter.find('a').click(function () { var selector = $(this).attr('data-filter'); $container.isotope({ filter: selector, animationOptions: { duration: 750, easing: 'linear', queue: false } }); return false; }); // Copy categories to item classes $filter.find('a').click(function () { $filter.find('a').removeClass('current'); $(this).addClass('current'); }); })(); /* ---------------------------------------------------------------------- */ /* Fancybox /* ---------------------------------------------------------------------- */ (function () { $('.fancybox').fancybox(); $('.fancybox-media').fancybox({ openEffect: 'fade', closeEffect: 'fade', helpers: { media: {} } }); })(); /* ---------------------------------------------------------------------- */ /* Modernizr Check csstransforms3d /* ---------------------------------------------------------------------- */ (function(){ Modernizr.load({ test: Modernizr.csstransforms3d && Modernizr.csstransitions, yep : 'js/jquery.hoverfold.js', nope: 'css/fallback-portfolio.css', callback : function( url, result, key ) { if( url === 'js/jquery.hoverfold.js' ) { $( '#portfolio-content' ).hoverfold(); } } }); })(); /* --------------------------------------------------------------------------- */ /* In-Field Labels /* --------------------------------------------------------------------------- */ (function () { $('.flabel').inFieldLabels(); })(); /* --------------------------------------------------------------------------- */ /* Google Maps /* --------------------------------------------------------------------------- */ (function () { if (document.location.hash.substr(1) === 'contacts') { initGmap(); } else { $(window).hashchange(function () { if (document.location.hash.substr(1) === 'contacts') { initGmap(); } }); } // Initialize Gmap function initGmap() { var position = new google.maps.LatLng(36.143247, -115.160151); $('#map').gmap3({ map: { options: { center: position, zoom: 15, } }, marker: { values: [ {latLng: position}, {latLng: [36.149762, -115.152726]} ], options: { draggable: false, icon: 'images/gmap_marker.png' } } }); } // Pan map $('.pan').click(function () { var lat = $(this).data('lat'), lng = $(this).data('lng'); $('#map').gmap3('get').panTo(new google.maps.LatLng(lat, lng)); $('.map-pan').find('div').removeClass('pan-active'); $(this).addClass('pan-active'); }); })(); });

Mantap

Santa Mars

BLOGGER DESIGNER

Hay, perkenalkan nama saya Santa Mars.
Tujuan saya disini hanya memberikan informasi-informasi yang saya pelajari selama di Internet dan mencoba membuat kreasi-kreasi baru di Blogger ini.

  • NamaSanta Mars
  • LahirLampung, 23 Maret 1994
  • HP087759909065
  • Emailmarsyanta@gmail.com
Turen - Malang - Indonesia
Karir

Profile Saya

  • NamaSanta Mars
  • LahirLampung, 23 Maret 1994
  • AlamatTuren - Malang - Indonesia
  • HP087759909065
  • Emailmarsyanta@gmail.com

Skill Saya

Web Design

  • HTML
  • Javascript
  • CSS

Tentang Saya

Hay, perkenalkan nama saya Santa Mars. . .

Tujuan saya disini hanya memberikan informasi-informasi yang saya pelajari selama di Internet dan mencoba membuat kreasi-kreasi baru di Blogger ini.

Karir

2012 - Sekarang

Bekerja

Telah bekerja di NEC Computer 2011, Indomarco 2013, VisiCom 2013-2014, Designer 2010-2014

2010 - Sekarang

Blogger

Mempelajari CSS, HTML, Javascript

1998 - 2012

Sekolah

TK 1998-1999, SD 2000-2006, SMP 2006-2009, SMK 2009-2012

Portfolio
  • Windows 8 SM adalah sebuah Template Blogger Professional yang di desain mirip dengan OS Windows.

    Selengkapnya...
  • Music Player SM memungkinkan anda mendengarkan musik dengan bufering dari masing- masing url lagu.

    Selengkapnya...
  • Blogger Revolution adalah Template Blogger 1 colomn dengan kecepatan loading yang sangat bagus.

    Selengkapnya...
  • Display Skin SM membantu anda dalam menyempurnakan sebuah blog dengan merubah tampilan secara langsung yang ada didalamnya.

    Selengkapnya...
  • A wonderful serenity has taken possession of my entire soul,

    Selengkapnya...
  • Faceblog adalah sebuah Template blogger yang hampir mirip dengan Facebook.

    Selengkapnya...
Kontak

Kontak Saya

My Location