Welcome To Javanicart

What Do We Offer

HTML
CSS
jQuery
SCSS
Javascript
PHP
XML
Web Designing

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's.

App Development

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's.

Web Application

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's.

Our Working Process

Our process on creating awesome projects.
  • 1. Concept

    Lorem Ipsum is simply dummy text of the printing and typesetting industry.

  • 2. Prepare

    Lorem Ipsum is simply dummy text of the printing and typesetting industry.

  • 3. Retouch

    Lorem Ipsum is simply dummy text of the printing and typesetting industry.

  • 4. Finalize

    Lorem Ipsum is simply dummy text of the printing and typesetting industry.

    3000

    Projects Completed

    50

    Happy Customers

    324

    Cups Of Coffee

    1234

    Awards

    Our Portfolio.

    A creative agency that believes in the power of creative ideas and great design.

    Get in Touch

    Feel free to drop us a line to contact us

    Name*


    Message*


    Feel free To Contact

    Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptate dolores, quasi unde quisquam facilis at ullam aperiam similique dicta voluptatibus!

    • jl.Melati no 35, wonopringgo, pekalongan , jawatengah, indonesia
    • 085600097732
    • tigarambu222@gmail.com
    • serdadulabel.id

    Pages

    // this has nothing to do with the animation, just forces the window to be a size that allows a scroll var containerHeight = $(window).height() / 2; $('.spacer').css("height", containerHeight); // Find the height of the previous section, half it so when you have scrolled more than half past the section, it triggers the animation var x = $('.skills').prev().height() / 4; $(window).scroll(function() { // checks to see if you have scrolled far enough down to activate the animation if ($(window).scrollTop() >= x) { //find each element with the class .skill-percent $('.skill-percent').each(function() { // animate $(this).animate({ //finds the width from the data-percent attribute width: $(this).data('percent') + '%' }, 1000); }); } });