• Liebes Forum. Ich habe vor Jahren das letzte Mal eine WP Seite erstellt. Seit dem hat sich in WP viel getan und ich komme schon gar nicht mehr mit. Ich möchte eine einfach Seite erstellen ohne Elementor Builder. Auf der Startseite soll oben aber eine Slider im Header sein, der 4 Bilder im Ken Burns Effekt anzeigen soll. Ich ich finde einfach keine freies PlugIn, was den Effekt mitliefert. Ich habe jetzt schon 6 Slider durchgetestet. Immer ist KB nur in der Pro Version enthalten.

    Deshalb meine Frage. Gibt es einen freien Slider mit diesem Effekt?

Ansicht von 6 Antworten – 1 bis 6 (von insgesamt 6)
  • Hi, anscheinend (ungetestet) hat der Smart Slider 3 diesen Effekt kostenlos an Bord.

    Oder du benutzt Custom CSS, in etwa so:

    .slider-image {
    animation: kenburns 20s ease-in-out infinite;
    }

    @keyframes kenburns {
    0% {
    transform: scale(1) translate(0, 0);
    }
    100% {
    transform: scale(1.2) translate(-10px, -10px);
    }
    }

    Thread-Starter vocaris

    (@vocaris)

    Guten Morgen und Danke für die Antwort. Ich habe ddn Effekt nicht im SS3 kostenfrei finden können. Bzgl. CSS Anapssunghane ich leider keine Plan, was ich wo ändern ergänzen müsste.

    Du könntest einen Slider bauen (mit einem Plugin deiner Wahl) und dann mittels Browserkonsole die sog. Selektoren ausfindig machen, um die jeweiligen Slides per CSS ansprechen zu können. Bei SS3 wäre das sowas wie div#n2-ss-4 .n2-ss-slider-2 . Statt .slider-image müsstest du dann diesen Selektor benutzen. Das Ganze kannst du z. B. im Customizer als individuelles CSS eintragen. Wenn dir das zu kompliziert ist, dann wirst du dir Hilfe dafür holen müssen. Ich bin nicht in der Lage, das alles hier haarklein aufzuführen, und schon gar nicht, wenn du uns deine URL vorenthältst (was allerdings auch nur etwas nutzen würde, wenn da bereits ein Slider wäre).

    Hi @vocaris and @presskopp

    Thank you for recommending Smart Slider 3, however the Ken Burns effect is only available in the Pro version:

    As for the custom CSS solution:

    You can target our Slide background images via this CSS selector:

    #n2-ss-44 .n2-ss-slide-background-image picture

    and apply custom styles on the element. The 44 refers to the ID of your slider:

    However I need to mention that, this will target all Slide background images within that slider, including the non active ones, so e.g. if you want to play it only on the active slide’s slide background image, then you will need to do this with JavaScript based on Slide switching:

    e.g. by applying a custom CSS class to the element with the corresponding index, and define the effect on that custom CSS class.

    However please note that questions and problems connected to custom coding and styling is out of the scope of our support.

    Best regards,
    Laszlo.

    Hi @vocaris and @presskopp

    Thank you for recommending Smart Slider 3, however the Ken Burns effect is only available in the Pro version:

    We don’t really recommend custom CSS solution, as we are unable to provide help for questions and problems connected to custom CSS, but if you are fine with the solution that @presskopp offered, then you could target the Slide background images with a CSS selector like this:

    #n2-ss-44 .n2-ss-slide-background-image picture 

    where 44 refers to the ID of the slider:

    Note: If your slider will contain only images, then as an alternative solution what could probably work for you is the Slide background animation feature:

    where we have some options even in the Free version. E.g. with the „Zoom“ animation and a very slow speed (e.g. Super slow 3x or 10x) you could create somewhat of a similar effect to the Ken Burns effect.
    ( But this will only work if you slide doesn’t have content, as the content will only show up after the background animation has finished. )

    Best regards,
    Laszlo.

    • Diese Antwort wurde vor 2 Monaten, 3 Wochen von Laszlo geändert. Grund: link to docs
    Moderator threadi

    (@threadi)

    @laszloszalvak: many thanks for your support for your own plugin here in the German-speaking forum. Your two replies were marked as spam, so I had to approve them first. Please don’t write twice next time, just wait a bit.

    Please keep in mind that this is the German forum and many users are here for that reason. Your answer can be translated e.g. via https://www.deepl.com.

    Alle anderen: die Antwort vom Plugin-Entwickler kann gerne per https://www.deepl.com übersetzt werden. Ich würde empfehlen solche detaillierte Fragen ohnehin in deren Supportforum zu stellen.

Ansicht von 6 Antworten – 1 bis 6 (von insgesamt 6)