As part of the recent improvements I’ve been making to various websites I wanted to make images in galleries show enlarged versions when hovered over. بنیادی کے ساتھ ایسا کرنا سی ایس ایس is fairly trivial, but I didn’t just want to expand the original image, میں چاہتا تھا کہ براؤزر نیا لے لے (larger) image too…
All of the images are already providing a full src-set so all I needed to do was to use a little jQuery (which is already loaded by wordpress anyway) to change the target display size to make the browser pull a larger image. اچھی بات یہ ہے کہ سی ایس ایس works instantly so you get a larger image using the original file, and then the quality improves a split second later as the higher res file gets loaded.
The سی ایس ایس
The سی ایس ایس I used is as follows. میں نے اسے اپنے تھیم کے اسٹائل سی ایس ایس میں آسانی سے شامل کیا (or rather child-theme — always a good idea to use one)
dt.gallery-icon ایک img.size-thumbnail:ہوور { تبدیل: پیمانہ(3.0); }
نوٹ (1) — the above سی ایس ایس applies to gallery images only. It is unlikely anyone would want this functionality for all images displayed anywhere on the page, but you might want it for the main content section. You would need to check how your theme structures this, but in my case the main content area is a “section” so the following code would do the job
سیکشن.ینٹری - p p ایک img.size-thumbnail:ہوور { تبدیل: پیمانہ(3.0); }
نوٹ (2) — This code applies only to thumbnail images. For medium images you would replace “size-thumbnail” with “size-medium”, and for large with “size-large”.
نوٹ (3) — Because my thumbnails are 120x80px I want to increase them to 3x their original size. I already have a custom image size of 360×240 that wordpress creates for me that is included in the src-set. For hi-dpi screens there are also even larger image sizes that I have (e.g. 720×480). Creating additional image sizes in wordpress is easy — there are lots of good guides online if you need to do this.
اگر آپ اسکیل کرنا چاہتے ہیں تو 1.5x یا 2.0x آسان تبدیل کریں 3.0 جیسا چاہا
jQuery
Add the following to your (بچہ) تھیم کی اسکرپٹ فائل (assuming it has one). If it doesn’t have one, create your own, and ‘enqueue’ it with a custom function in the (بچہ) تھیم کے فنکشنز۔ پی پی پی
jQuery(دستاویز).تیار(تقریب(){ jQuery("dt.gallery-icon ایک img.size-thumbnail").ہوور(تقریب(){ jQuery(اس).اٹار("سائز","(زیادہ سے زیادہ چوڑائی: 360پکسلز) 100vw, 360پکسلز"); }, تقریب(){ jQuery(اس).اٹار("سائز","(زیادہ سے زیادہ چوڑائی: 120پکسلز) 100vw, 120پکسلز"); }); //اوپر دہرائیں 5 یہاں ہر ایک مختلف امیج سائز کے ل lines آپ ترمیم کرنا چاہتے ہیں });
The above code is applying to images with class thumbnail that are found inside any dt with a gallery-icon class — so in otherwords — only to images inside the wordpress built-in gallery structure. On hover the max-width is increased from 120 کرنے کے لئے 360 (ایک 3x اضافہ میرے سے ملنے کے لئے سی ایس ایس!), and then the second part of the function restores the original 120 width when the hover stops.
جیسا کہ سی ایس ایس مندرجہ بالا, you can adjust the numbers to change how much the image enlarges, اور آپ اس کو تبدیل کرسکتے ہیں dt.gallery-icon a img.size-thumbnail
section to target a different element or class depending on which images you want to target.
اپنی اسکرپٹ کو قطار میں لائیں
If your theme didn’t have a script file and you need to enqueue your own add the following to your (بچہ) تھیم کے فنکشنز۔ پی پی پی (assuming you called your script file image-zoom.js and saved it in the root folder of the theme)
wp_register_script( 'img-zoom', get_st शैली شیٹ_ڈائرکٹری_وری() . '/image-zoom.js', سرنی( 'jquery' ), '', true);
wp_enqueue_script( 'img-zoom' );
مذکورہ بالا آپ کا اسکرپٹ رجسٹر کرے گا, in the footer, making sure it is placed after jquery (so jquery should already be available when it executes)
تصویر کے سائز کو شامل کرنا
For completeness here’s how to add custom image sizes to wordpress. ایک بار پھر, اس کو اپنے میں شامل کریں (بچہ) تھیم کے فنکشنز۔ پی پی پی
add_image_size( 'چوتھائی چوڑائی', 192, 144, جھوٹے );
Above I’ve added a new image-size called “quarter-width” with a maximum width of 192px and a maximum height of 144px. شبیہہ فصل نہیں لگے گی (لہذا آخر میں غلط).
WordPress will now create images of this size automatically when you upload images (you will need to use a thumbnail rebuild plugin to recreate the thumbnails for already-uploaded images).
This new image size will NOT show up for insertion in the editor though. To make it available also add the following code to your functions.php
my_custom_image_sizes فنکشن کریں( $سائز ) {
واپس سرنی_ ڈرم( $سائز, سرنی(
'quarter-width' => __('کوارٹر چوڑائی'),
) );
}
موجودہ ترتیبات کا احترام کرنا
ایک اور چیز جو آپ کرنا چاہتے ہو (to ensure responsive images work well) is to create larger (یعنی. ہیلو dpi) thumbnail sizes that respect the GUI of whether to crop thumbnails or not. To do that use the code below which as you will see is slightly modified from the more basic one above
add_image_size( 'resp-thumb-2x', (get_option( 'thumbnail_size_w' ) == 0 ? 0 : '240'), 160, get_option( 'thumbnail_crop' ) );
مندرجہ بالا کوڈ چیک کرتا ہے 2 things — firstly it checks to see if the crop option is set, اور اگر یہ ہے, it mirrors it for our new responsive size. یہ بھی چیک کرتا ہے کہ آیا چوڑائی سیٹ کی گئی ہے 0 (یعنی. no maximum) in which case our new image will also have no maximum either. I called the new image size “resp-thumb-2x” as it is a ‘responsive’ copy of the thumbnail that is twice as large (for hi-dpi screens with double the normal pixel density). I have also created a number of other sizes to make a fairly complete set.
Note — Since my original thumbnails were 120×80 I want my new ones to be 240×160 so those are the sizes I have specified (سخت کوڈت). It would be possible to get both the height and width specified for the original thumbnail and multiply both by 2 to make this function fully generic, but I didn’t do so when I was developing it so I will leave that to you to figure out!
ایک آخری نوک
تو, میری طرح, you create your own full set of new image sizes, you may not want wordpress to create it’s own extra hidden sizes. In addition to the original image, and the thumbnail, the medium, اور بڑی شبیہہ, wordpress also create a “post-thumbnail”, a “medium-large”, a 1536×1536 and a 2048×2048. These are disabled in 2 different ways…
کو دور کرنے کے لئے 1536 and 2048 تصاویر براہ راست آگے ہے
#_image_size( '1536x1536' ); //ہٹا دیں 1536 we dont need it
remove_image_size( '2048x2048' ); //ہٹا دیں 2048 ہمیں اس کی ضرورت نہیں ہے
The post-thumb and medium-large are slightly more complicated
//remove the built-in medium-large add_filter('انٹرمیڈیٹ_میج_ سائز', تقریب($سائز) { واپس سرنی_ڈف($سائز, ['میڈیم_لیج']); }); //remove the built-in post-thumbnail add_filter('انٹرمیڈیٹ_میج_ سائز', تقریب($سائز) { واپس سرنی_ڈف($سائز, ['پوسٹ تھمب نیل']); });
Note that removing the post-thumbnail seems to sometimes have strange effects on the image library in the editor.
ایک آخری حتمی نوٹ
When deciding on image sizes (for larger images, less so thumbnails) you ideally want a size that common aspect ratio images will always resize nicely to. For that reason I recommend the following sizes
سائز | چوڑائی | اونچائی (4:3) | اونچائی (16:9) | اونچائی (3:2) |
---|---|---|---|---|
کوارٹر | 192 | 144 | 108 | 128 |
تیسرے | 288 | 216 | 162 | 192 |
نصف | 384 | 288 | 216 | 256 |
Medium | 576 | 432 | 324 | 384 |
بھرا ہوا | 768 | 576 | 432 | 512 |
بڑے | 1152 | 864 | 648 | 768 |
ایکس ایل | 1536 | 1152 | 864 | 1024 |
Note how the widths specified produce whole number heights for all 3 of the most common aspect ratios. آپ کو ایسی چوڑائی جیسے نہیں ملے گی 150 or 200.
Also note the pattern in increases. چھلانگ لگائیں 2 ٹیبل میں قطاریں اور سائز ڈبل ہوجاتے ہیں! یہاں تک کہ قطاریں (288,576,1152 and 1535) are also 1.5x the previous size so these work well on semi-hi-dpi screens using a 50% dpi اضافہ. اس سیٹ کو استعمال کرکے 7 sizes you have a good range of usable options for most viewports AND a good set of responsive images that wordpress will automatically add to the src-set since they will have consistent aspect ratios with no fractions that would lead to quality loss or cropping.
Currently for thumbnails I tend to either have unlimited width allowed OR I hard crop to a fixed 3:2 ratio so I use whole number sizes for thumbnails but I may eventually tweak my theme and extend the above system backwards by having options 48px and 96px wide (نوٹ کریں کہ ان میں کوئی قدر نہیں ہے 2 that would work unfortunately — and since I use 60px wide mini thumbnails I haven’t opted to extend backwards). 72px دونوں کے لئے کام کریں گے 4:3 and 3:2 (اور 64px ساتھ کام کریں گے 4:3 and 16:9). Since a majority of my images are taken on my dSLR these are typically 3:2 (the same as the aspect ratio of traditional 35mm film) تو میں بھی اس سائز کو استعمال کرسکتا ہوں, جو اس کے بعد پورے سائز میں کام کرے گا, but the larger sizes are not cropped whereas my thumbnails are — I’m happy for larger images to be both landscape and portrait, but I want thumbnails to typically be landscape only to fit with my design, so that’s why I haven’t extended backwards. Hopefully as more and more logos are available as SVGکے, اور ایک بار JPEG-XL مستقبل قریب میں براؤزر میں پہنچے گا, اس کا بہت کچھ حل ہو جائے گا.
“Hi James I realise it has been a long while, but I just checked this on windows 11 (build 23H2)…”