Dieses Plugin ist nicht mit den jüngsten 3 Hauptversionen von WordPress getestet worden. Es wird möglicherweise nicht mehr gewartet oder unterstützt und kann Kompatibilitätsprobleme haben, wenn es mit neueren Versionen von WordPress verwendet wird.

ACF: Focal Point

Beschreibung

Adds a new field type to ACF allowing users to draw focal points on images. Uses Wenting Zhang’s Responsify.js to create focal points on images using jQuery.

Works similar to a traditional ACF image field, but once an image is selected and a preview is displayed, this plugin allows drawing a box around a focal point in the image using canvas. That image can then be displayed in a nice responsified fashion. View the ResponsifyJs homepage for a demo.

Image returned as either tag or object to use within themes. Includes responsify.js.

See Frequently Asked Questions for more info and detailed usage.

Last tested on ACF v4 (4.4.5) & ACF Pro (5.3.3.2).

Screenshots

  • Creating a Focal Point Field.
  • Selecting a Focal Point for the selected image.
  • Desktop width image on 2016 Theme.
  • Same image at mobile width.

Installation

Since this a WordPress plugin just search for „ACF: Focal Point“ in the plugins section in the admin and install it from there. If you would rather install it manually you can do the following:

  1. Download and extract the plugin
  2. Copy the acf-focal_point folder into your wp-content/plugins folder
  3. Activate the Focal Point plugin via the plugins admin page
  4. Create a new field via ACF and select the Focal Point type
  5. Please refer to the Frequently Asked Questions for more info regarding the field type settings

FAQ

Wie benutze ich es?

Pretty much just like an ACF Image Field. There’s a few differences, like not returning just an ID (there’s no point without positions), but the basics are the same.

Make sure the Preview Size and Return Size are of a similar ratio. And make sure the image parent has a height.

Image tag returns some additional markup on images:

<img class="js-focal-point-image" src="img.png" alt="image alt" data-focus-left="0.12" data-focus-top="0.11" data-focus-right="0.40" data-focus-bottom="0.98">

The Image object now has a few more values too:

'focal_point'   => array(
    'class'     => 'js-focal-point-image',
    'top'       => $value['top'],
    'left'      => $value['left'],
    'right'     => $value['right'],
    'bottom'    => $value['bottom']
)


'class' refers to the class that Responsify.js is called on. This needs to be on the image tag to work.

'top', 'left', 'right' and `'bottom'` refer to the `data-focus` attributes used to control focal point. 

Build image as per above tag. Responsify is called on load and resize automatically on img.js-focal-point-image.

Why are the images returned huge?

Make sure the image is wrapped inside an element that has a height and hasn’t had it’s overflow: hidden overridden (by !important). And that the image hasn’t had it’s max-width: none overridden.

Why are the images returned small?

Make sure the return image size (set when creating a Focal Point field) isn’t set to a small image size. Larger images work better.

Why are the images not stretching to fill it’s container?

Responsify.js tries it’s best to fit as much of the photo in the container as it can, whilst keeping the focal point a priority, and also keeping ratios correct. This means that at some sizes/ratios your image will be displayed too small for it’s container, try changing container size or image size. Or use background-size: cover.

Why are the images not scaling?

Because for this to work, the image needs to move around within a container. Which means we need to hide the containers overflow. Which means we need to set a height. This is not made for wysiwyg style images, it’s for banners, sliders, fullpage, fixed height sections, etc.

Why is the focus area not lining up correctly when I view the page/post?

Make sure that the preview size and the return size are the same ratio. It’s relatively accurate when they’re close, but for best results they should be the same. And make sure any image sizes aren’t differing their crops.

Rezensionen

5. Juni 2018
Works a treat, thanks! Tested and working with: WordPress 4.9.6 Advanced Custom Fields PRO 5.6.10
23. Mai 2017
I was skeptical of this plugin since it had so few reviews, but it is a gem. I've always wanted something like Squarespace's focal point. This is great! I've used it on a blog for both the post preview image and using the same image for the header. It's looks great in both spots. I like that it is adaptable so it can pass an image object or just an image in the desired size. We are still building out content, but you can see it in action here: https://brandhoot.com/blog/
Alle 2 Rezensionen lesen

Mitwirkende & Entwickler

„ACF: Focal Point“ ist Open-Source-Software. Folgende Menschen haben an diesem Plugin mitgewirkt:

Mitwirkende

Übersetze „ACF: Focal Point“ in deine Sprache.

Interessiert an der Entwicklung?

Durchstöbere den Code, sieh dir das SVN Repository an oder abonniere das Entwicklungsprotokoll per RSS.

Änderungsprotokoll

1.0.0

  • Erstversion

1.0.1

  • Fixed bug with image not displaying on changing acf tabs.
  • fixes missing class from delete icon
  • fixed undefined variables