Monday, December 4, 2023
HomeEmail MarketingThe best way to Create an Interactive Halloween Electronic mail

The best way to Create an Interactive Halloween Electronic mail


Halloween Email

This put up was up to date on October 8, 2018. It was initially printed in November 2017.

Halloween is certainly one of our favourite occasions of the 12 months at Electronic mail on Acid. To have a good time this spooky and enjoyable season, we created an interactive scrolling Halloween electronic mail that includes an individual strolling by a panorama of “monsters” to ship an electronic mail. There was a whole lot of curiosity in how we did it, so we determined to create a code tutorial.

A phrase of warning, although: We encourage you to check this system earlier than you ship it out to your subscribers. Any code change – irrespective of how difficult – can break an electronic mail.

Email on acid Halloween email

View the Halloween electronic mail right here

Fake-Mounted Method

We’re calling this system “faux-fixed” as a result of this system makes use of some tips to create an look of an object being fastened in a container with out utilizing CSS positioning attributes. You’ll be able to then scroll the content material within the container underneath and over the fastened object. (The identify is impressed from Kristian Robinson’s “faux-video” method).

Usually, positioning a static object inside a scrolling container requires us to model the thing with fastened positioning (place:fastened). Nevertheless, as a result of place:fastened is not supported in a lot of the main electronic mail purchasers, we have to resort to utilizing some CSS trickery.

As a result of we’re not utilizing pseudo-classes, this system has a surprisingly broad electronic mail shopper help, together with iOS, Apple Mail and all of the Gmail apps (Internet, Android and iOS).

Easy Instance

As an example how this works, right here’s a easy instance of a basketball “falling” by a hoop:

Basket ball falling through hoop analogy

View in CodePen

The core of the method includes three elements:

  • A set object (the ball)
  • A background picture (the backboard)
  • A foreground picture (the ring).

This method sandwiches the fastened object, so it seems over the background and beneath the foreground, and it appears to be like just like the ball goes into the ring when the person scrolls.

 

Three parts of technique

We wrap the background and foreground picture in a container with an overflow hidden so the content material scrolls. Then, we place the ball statically on high of the container.

Since fastened positioning is just not supported in electronic mail purchasers, we’re utilizing a intelligent method by Mark Robbins to use absolute positioning utilizing margins. The code for the ball is positioned exterior the scrolling container, so it stays in place when the person scrolls the content material within the container.

<!-- "absolute" place ball over scrolling container -->
<div model="peak:0px;max-height:0px;overflow:seen!vital;">
  <div model="show:inline-block;place:relative;opacity:0.999;margin-top:100px;margin-left:166px;width:70px;"><img src="https://www.emailonacid.com/weblog/article/email-development/how-we-created-out-interactive-scrolling-halloween-email/bball.png" width="100%"></div>
</div>

<!-- scrolling container -->
<div model="peak:360px;overflow:auto;">
 ...
</div>

Sandwiching the Mounted Object

We run into browser quirks once we “sandwich” the fastened object. Out of the field, this system works in Safari (and iOS). Nevertheless, in Chrome (and Android), the ball seems hidden by the background picture.

Nonetheless, there’s a trick we will use to shift the context so the ball seems above the background. The method includes creating a brand new “stacking context.” You’ve most likely used z-index to alter the stacking order of completely positioned parts, however do you know there are methods to “bump up” parts to the highest by creating a brand new stacking context? This text goes into the small print.

As talked about within the article, we will create a brand new stacking context through the use of opacity and place. It’s greatest to make use of two strategies as a result of Gmail helps opacity however not place, and Yahoo! Mail helps place (relative) however not opacity. Sadly, Outlook.com helps neither so we’ll should exclude that shopper.

Right here’s the code to create the basketball instance with out fallbacks:

<!-- "absolute" place ball above scrolling container -->
<div model="peak:0px;max-height:0px;overflow:seen!vital;">
  <div model="show:inline-block;place:relative;opacity:0.999;margin-top:100px;margin-left:166px;width:70px;"><img src="https://www.emailonacid.com/weblog/article/email-development/how-we-created-out-interactive-scrolling-halloween-email/bball.png" width="100%"></div>
</div>

<!-- scrolling container -->
<div model="peak:360px;max-height:400px;overflow:auto;border:2px strong black;background-color:#97defb;">
  <div model="peak:630px;background-image:url('background.png')">
  <img src="foreground.png" model="show:block;width:100%;place:relative;opacity:0.999;">
  </div>
</div>

View in CodePen

Supported Purchasers

Electronic mail shopper Assist
Android 4.4 Native Consumer
Apple Mail ✔️
Gmail App (Android & iOS) ✔️
Gmail App (Pop/IMAP)
iOS Mail ✔️
Outlook for Mac ✔️
Outlook for Home windows
Outlook.com
Samsung Native Consumer ✔️
Yahoo! Mail Webmail ✔️
Yahoo! Mail App

*Since we initially despatched this electronic mail in 2017, we’ve discovered that there are extra Gmail purchasers that help the interactive function, nonetheless, help is just not common because of GANGA

Fallback

Fallback

As with most interactive electronic mail designs, we’ll want a fallback for purchasers that don’t help the method. Our technique is to indicate the fallback by default after which show the interactive content material once we detect purchasers that help it.

<!--[if !mso]><!-->
<div class="interactive" abstract="block-outlook-android" model="show:none;max-height:0px;overflow:hidden;">
   ... Interactive content material hidden by default ...
</div>  
<!--<![endif]-->

<div class="fallback" abstract="block-outlook-android">
  ... Fallback content material displayed by default ...
</div>

The code to allow interactivity is barely extra sophisticated since there isn’t a simple solution to detect purchasers that help it.

First, we allow interactivity just for purchasers that help media queries.

  @media display {
    .interactive {
      show:block!vital;
      max-height:none!vital;
      overflow:seen!vital;
    }
    .fallback{
      show:none;
    }
  }

Then, we have to block the Android 4.4 shopper that does help media queries however not any such interactivity. As a result of Android 4.4 additionally doesn’t help the calc CSS perform we will use the next code to cover interactivity from Android:

  @media (max-device-width:800px)   { 
    /* 
    Block for Android 4.4 utilizing calc(vh)
    We do not filter by (min-resolution: .001dpcm) as a result of 4.4 native would not reply to it
    */

    .interactive {
      show:block!vital;
      overflow:hidden!vital;
      max-height:0px!vital;
      max-height:calc(100vh + 1000px)!vital;
    }
    .fallback{
      show:block!vital;
      overflow:hidden!vital;
      max-height:none!vital;
      max-height:calc(0vh - 1000px)!vital;
    }
  }

And at last, this doesn’t work within the Android Outlook App. The Android Outlook app helps media queries however not attribute selectors, so we add the “abstract=block-outlook-android” attribute selectors to the interactive and fallback sections and use that to forestall interactivity within the Android Outlook App.

  @media (max-device-width:800px) and (-webkit-min-device-pixel-ratio:0) and (min-resolution: .001dpcm) { 
    /* Block for Samsung and Outlook Android */
    .interactive {
      show:none!vital;
    }
    .fallback{
      max-height:none!vital;
    }
    /* Reenable on Samsung solely: 
      Outlook on android doesn't help abstract attribute */
    .interactive[summary="block-outlook-android"] {
      show:block!vital;
    }
    .fallback[summary="block-outlook-android"] {
       max-height:calc(0vh - 1000px)!vital;
    }
  }

View the whole code in CodePen

Halloween Design

Halloween Email Design three parts

View the Halloween electronic mail right here

Our Halloween design used the identical rules we described within the basketball instance. We created an avatar of a bearded man because the fastened object, an animated panorama with monsters because the background picture, and a picture that includes tree branches and bats with a clear background because the foreground picture.

For the fallback, we displayed a static picture and linked it to the net model the place readers on unsupported purchasers can expertise the e-mail on a browser.

Static image of halloween email

Many Potentialities

There’s so much that may be accomplished with this design. Taco Bell despatched a fantastic electronic mail with a scrolling design two years in the past that used CSS fastened positioning (which is now not supported within the newest iOS Mail). Nevertheless, we will create this design utilizing the faux-fixed method. You possibly can even have a race automobile race down a observe or a fowl flying by clouds. When you implement one thing comparable, please put up a remark beneath – we’d  like to see it.

RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

- Advertisment -
Google search engine

Most Popular

Recent Comments