jquery Programming Glossary: winh
Control page scroll animation with mousewheel http://stackoverflow.com/questions/11171828/control-page-scroll-animation-with-mousewheel slight modification jsFiddle demo I created a jsFiddle demo using the mousewheel plugin and this little of jQuery var winH window .height '.page' .height winH var c 0 var pagesN '.page' .length document .bind 'mousewheel' function ev delta delta.. created a jsFiddle demo using the mousewheel plugin and this little of jQuery var winH window .height '.page' .height winH var c 0 var pagesN '.page' .length document .bind 'mousewheel' function ev delta delta 0 c c if c 1 c 0 else if c pagesN..
Binding dynamically created elements in jQuery http://stackoverflow.com/questions/2238616/binding-dynamically-created-elements-in-jquery '0' 'top' '0' 'z index' '9000' 'background color' '#000' 'display' 'none' Get the viewpane height and width var winH window .height var winW window .width Center the modal id .css 'top' winH 2 id .height 2 id .css 'left' winW 2 id .width.. Get the viewpane height and width var winH window .height var winW window .width Center the modal id .css 'top' winH 2 id .height 2 id .css 'left' winW 2 id .width 2 Transition effects for overlay '#overlay' .fadeIn 1000 .fadeTo 1000 0.8..
Image resize to fit screen http://stackoverflow.com/questions/2569192/image-resize-to-fit-screen origSizeH #photo .height var ratioVt origSizeW origSizeH var ratioHz origSizeH origSizeW var winW window .width var winH window .height var screenSizeW Math.round winW borderHz var screenSizeH Math.round winH borderVt if origSizeW origSizeH.. var winW window .width var winH window .height var screenSizeW Math.round winW borderHz var screenSizeH Math.round winH borderVt if origSizeW origSizeH var newHeight Math.round screenSizeW ratioHz if newHeight screenSizeH #photo .css width..
|