jquery.pin.js Github code base https://github.com/webpop/jqu.
I am working on a resolution recognition method. At present, most web pages are developed based on 1440x900 resolution, which makes it very stingy on 1920x1080. Since the web page has been formed and does not want to be laid out from scratch, in order to maintain a resolution of 1920 and 1440, the following method is used:
css response direct proportional magnification of 25%
<style> @media (min-width:1800px){ body{zoom:1.25!important;} } </style>
in this 25% magnification mode, pin.js is completely messed up, unable to fix elements and page dislocation. I wonder if it is because pin.js recognizes page parameters without zoom:1.25 and applies them to zoom:1.25 pages. At present, no solution can be found.