I'm totally blown away by the slideshow at https://paydirtapp.com/ , anyone got any clues on how it was achieved ? I'm guessing it's some complex html5 canvas mumbo-jumbo ?
Awesome loupe/magnifying effect on slideshow at Paydirt's homepage
745 Views Asked by Winterain At
1
There are 1 best solutions below
Related Questions in JAVASCRIPT
- Using Puppeteer to scrape a public API only when the data changes
- inline SVG text (js)
- An array of images and a for loop display the buttons. How to assign each button to open its own block by name?
- Storing the preferred font-size in localStorage
- Simple movie API request not showing up in the console log
- Authenticate Flask rest API
- Deploying sveltekit app with gunjs on vercel throws cannot find module './lib/text-encoding'
- How to request administrator rights?
- mp4 embedded videos within github pages website not loading
- Scrimba tutorial was working, suddenly stopped even trying the default
- In Datatables, start value resets to 0, when column sorting
- How do I link two models in mongoose?
- parameter values only being sent to certain columns in google sheet?
- Run main several times of wasm in browser
- Variable inside a Variable, not updating
Related Questions in HTML
- How to store a date/time in sqlite (or something similar to a date)
- How to use custom font during html to pdf conversion?
- Storing the preferred font-size in localStorage
- mp4 embedded videos within github pages website not loading
- Scrimba tutorial was working, suddenly stopped even trying the default
- Is there any way to glow this bulb image like a real light bulb
- With non-graphical maps in Leaflet, zoomDelta doesn't work
- What can I do to improve my coding on both html and css
- Uncaught TypeError: google.maps.LatLng is not a constructor at init (script.js:7:13)
- Bootstrap modal not showing at the desired position on a web page when the screen size is smaller
- Displaying a Movie List on a Website Using Jinja2 and Bootstrap
- How to redirect to thank you page after submitting a Google form embedded into a Google Site?
- Storing selected language in localStorage
- Fences (parenthesis, braces) in HTML and MathML
- Understanding Scroll Anchoring Behavoir
Related Questions in SLIDESHOW
- Curved Carrousel
- How to make Slider move automatically?
- Slideshow/ Carousel Indicators
- I am trying to get the slideshow images from JS and resize them in SCSS
- Is there a way to change the animation type of multiple objects at once?
- Embedded slides in webapp which can be edited on the UI
- Ng Image Slider require Click to show the images otherwise It keep loading
- Supersized jQuery plugin is not displaying the slideshow at www.acrews.com
- Is there a way to animate the transition of slides in racket slideshow?
- How to revert the printing of PowerPoint slides to A4 pages in PDF with 2 slides each?
- Issue with multiple javascript slideshows on the same page
- Slideshow covers up the other dividers
- How to display photos using swiper
- Can i implement a Pause and Resume function to my Slideshow Javascript?
- slideshow image mouseover dropdown css
Related Questions in EFFECT
- Pdf with page cURL effect
- Angular Effects Unit test: RxJs race operator
- How to change the plot background color generated by plot(effect(...)) in grey with white grid in R?
- Angular v17 control flow for loop on select control throwing error with effect
- simulate simplicity mvvm trigger() throw index.html:72 Uncaught RangeError: Maximum call stack size exceeded
- Blinked image when cursor enter in the image
- SwiftUI Rolling Text Animation Freezes with Rapid User Input
- How to correctly use Angular signal effect with arrays?
- Typewriter Effect on a list
- Bg Opacity change on scroll
- how can I add a scroll down panel effect on my squarespace website?
- How to add moving light overly on top of linear progress indicator - Flutter
- CSS Blury background Effect
- Android- How to perform image scaling based on the scroll direction of the NestedScrollView?
- How can I add a glow effect to editor text in a VS Code theme?
Related Questions in LOUPE
- Disable React Native Webview text selection loupe on iPad
- ASP net core API logging via Postsharp
- Implementing magnifier/loupe for custom dynamic view on android
- global disable magnifying glass on iOS 9 in meteor cordova app
- How to display Magnifying glass of IOS when pangesture or tapgesture
- How can I add the loupe jQuery image magnifier to enlarged fancybox popup image?
- Re-bind jquery plugin to selector after property change?
- Galleriffic and Loupe Magnify Issue
- Magnify a specific area of the screen
- Awesome loupe/magnifying effect on slideshow at Paydirt's homepage
- jQuery Loupe and Click Events
- jQuery loupe & prettyPhoto - how can I make them both working?
- How can I customise jquery loupe to have a circular lens?
- How to optimize drawing of a UIView that contains subviews with CATiledLayer layers
- jQuery PrettyPhoto/Lightbox with Loupe Magnifier
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
TL;DR: Use your browser's inspector to find it all out!
There's probably not as much canvas use as you would expect. Using the browser inspector, you can quickly see the basics of what's going on here:
As you can see from above, there are three main components: the magnifier, the screenshots and the messages. Using CSS3, the drop shadow and circular effect are made (box-shadow & border-radius) for each of the parts of the magnifier (shadow, glow, and canvas).
The canvas part is simply the image that is under the magnifying glass. Using canvas gives the ability to blur the image (when the magnifying glass animates. The container of those three elements manages moving and sizing (scale). The circular cropping-like effect is done with just a border-radius style.
The
image_wrapperclass holds all the individual screenshots that the tour goes through. There are higher resolution images than are required probably because the canvas element won't have to load separate images for the "zoomed" in versions.An then there's the
magnifier_messageclass which simply contains the text. It's updated via javascript - nothing too fancy here.To wrap it all up, the parent that contains these three elements has the background image (of the OSX desktop).
For the canvas work - it's not for the faint of heart - they're in javascript under
/assets/promo-0e644...jsfile. Webkit's inspector can reformat the javascript so it's a bit more readable if you want to have a good read (It's the curly braces button on the bottom of the window):Sadly, the sideshow doesn't degrade gracefully (or any sign of progressive enhancement) :(