Diplom: 2. Woche

Fxcam_1270141758041

Getting Real, keine Post-Its und the end of the world as we know it (and I feel fine).

  • Kommentare deaktiviert

Diplom: 1. Woche

Eine Idee, Radio Paradise und eine Menge Post-Its.

Eine Idee, Radio Paradise und eine Menge Post-Its.

  • Kommentare deaktiviert

Aufgeregt.

Media_httpfarm1static_cvhjd

  • Kommentare deaktiviert

Sticky scrolling shoppingcart with jQuery

Sticky scrolling shoppingcart with jQuery

This is a little jQuery snippet for a sticky scrolling shoppingcart like the one Apple uses at the Apple Onlinestore: http://store.apple.com/de/configure/MB950D/A?mco=MTM3NTgzMTk

 

Demo: http://michelgotta.de/demo-sticky-scrolling-shopping-cart/


jQuery:

$(document).ready(function() {  
    // check where the shoppingcart-div is  
    var offset = $('#shopping-cart').offset();  
    $(window).scroll(function () {    
        var scrollTop = $(window).scrollTop(); 
        // check the visible top of the browser     
        if (offset.top<scrollTop) {
            $('#shopping-cart').addClass('fixed'); 
        } else {
            $('#shopping-cart').removeClass('fixed');   
        }
    }); 
}); 


CSS:

 .fixed {    
    position: fixed;     
    top: 20px;    
    margin-left: 720px;    
    background-color: #0f0 ! important; 
} 

Orbitone

  • Kommentare deaktiviert

ORBITONE

Follow us on twitter

  • Kommentare deaktiviert

My iPad from 2007

Habe vor ca. 2 Jahren mal aus Spaß ein paar Renderings vom iPad bzw. MacTouch, wie ich es mir damals vorgestellt habe, gemacht. Damals noch mit Chrom anstatt mattem Alu und so dick wie Laptops damals nunmal waren, aber irgendwie gar nicht so weit vom heute vorgestellten iPad weg. Natürlich damals noch mit Leopard und nicht mit iPhone OS 4.

  • Kommentare deaktiviert

Such a mess in F17/11 today

  • Kommentare deaktiviert