Implement Using
Divi Blurb ModuleLets Get Started
Step 1 :- Click On Insert standard section and select the regular section then click on insert row and select 3 column layout.
Step 2 :- Once you have entered the Visual Builder, you can click the gray plus button to add a new module to your page. New modules can only be added inside of Rows. If you are starting a new page, don’t forget to add a row to your page first. Locate the Blurb Module within the list of modules and click it to add it to your page. The module list is searchable, which means you can also type the word “Blurb” and then click enter to automatically find and add the Blurb Counter Module! Once the module has been added, you will be greeted with the module’s list of options.
Step 3 :- First thing you need to start with Blurb module and insert as details as per below image.
1. Add Title On textfield Example Like :- Web Design (This is the title of the Number Module you are featuring. The title is displayed at the top of the module in larger text.)
2. Add Content On textfield Example Like :- [ enter a short description of the service ]
3. URL: [add a URL to the service page]
Step 4 :- Now Click Use Icon: Yes
Icon: [ Select an icon that illustrates your service ] front
Step 5 :- Now Click on advanced tab and add css class
Css Class : et_pb_blurb_flip_1 frontfront
Step 5 :- Click on Save & Exit.
Step 6 :- Repeat Setp 2,3,4,5 again for other three number counter module or Duplicate the Module that holds the Number Counters Modules so that more than one number counters are displayed below. .Only you have to enter diffrent color css class in css class text field.
et_pb_blurb_flip_1 back
Step 7:- Add class :” hover panel” to Column
Step 8:- Now lets start to Set Blurb Module Style :
If you are working with a child theme you can go to Appearance -> Editor and open your stylesheet. If not, go to Appearance -> Divi Theme Options -> ePanel -> Custom CSS (which is located at the bottom of the ePanel)
Copy Below css code and paste in Custom Css Or stylesheet.
:root {--color-1: #008B8B;} /================ Blurb Module Style ================/ .et_pb_blurb_flip_1 { -webkit-transform: perspective(1px) translateZ(0); transform: perspective(1px) translateZ(0); position: relative; overflow: hidden; padding:20px; border: 2px solid var(--color-1); background-color: #fff; } .et_pb_blurb_flip_1:before { content: ""; position: absolute; z-index: -1; left: 50%; right: 50%; top: 0; background: var(--color-1); height: 100%; -webkit-transition-property: left, right; transition-property: left, right; -webkit-transition-duration: 0.5s; transition-duration: 0.5s; -webkit-transition-timing-function: ease; transition-timing-function: ease; } .et_pb_blurb_flip_1.back:before { left: 0; right: 0;} .et_pb_blurb_flip_1 .et_pb_blurb_content .et_pb_main_blurb_image .et_pb_image_wrap .et-pb-icon{color: #fff !important; width: 100px; height: 100px; border: 1px solid transparent; line-height: 100px; background: var(--color-1); font-size: 40px; border-radius: 50%; transition:0.5s ease .2s;} .et_pb_blurb_flip_1.back .et_pb_blurb_content .et_pb_main_blurb_image .et_pb_image_wrap .et-pb-icon{background:#fff;color:#000 !important;} .et_pb_blurb_flip_1.back .et_pb_blurb_content .et_pb_blurb_container .et_pb_module_header, .et_pb_blurb_flip_1.back .et_pb_blurb_content .et_pb_blurb_container .et_pb_blurb_description{color:#fff;} .et_pb_blurb_flip_1 .et_pb_blurb_content .et_pb_blurb_container .et_pb_module_header{font-size: 20px; font-weight: bold; color: #333; margin: 0 0 10px 0; transition: all 0.5s ease 0s; text-align:center; font-variant:small-caps;} .et_pb_blurb_flip_1 .et_pb_blurb_content .et_pb_blurb_container .et_pb_blurb_description{ font-size: 16px; color: #666; font-family: Roboto; text-align:center; font-weight: 400; line-height: 28px; transition: all 0.5s ease 0s;}
Step 9:- Now lets start to Panel Hover Css Style :
If you are working with a child theme you can go to Appearance -> Editor and open your stylesheet. If not, go to Appearance -> Divi Theme Options -> ePanel -> Custom CSS (which is located at the bottom of the ePanel)
Copy Below css code and paste in Custom Css Or stylesheet.
/* -- make sure to declare a default for every property that you want animated -- */ /* -- general styles, including Y axis rotation -- */ .panel { position: relative; } .panel .front { /*position: absolute;*/ top: 0; z-index: 900; text-align: center; -webkit-transform: rotateX(0deg) rotateY(0deg); -webkit-transform-style: preserve-3d; -webkit-backface-visibility: hidden; -moz-transform: rotateX(0deg) rotateY(0deg); -moz-transform-style: preserve-3d; -moz-backface-visibility: hidden; -o-transition: all .4s ease-in-out; -ms-transition: all .4s ease-in-out; -moz-transition: all .4s ease-in-out; -webkit-transition: all .4s ease-in-out; transition: all .4s ease-in-out; } .panel.flip .front { z-index: 900; -webkit-transform: rotateY(180deg); -moz-transform: rotateY(180deg); } .panel .back { position: absolute; top: 0; z-index: 800; -webkit-transform: rotateY(-180deg); -webkit-transform-style: preserve-3d; -webkit-backface-visibility: hidden; -moz-transform: rotateY(-180deg); -moz-transform-style: preserve-3d; -moz-backface-visibility: hidden; /* -- transition is the magic sauce for animation -- */ -o-transition: all .4s ease-in-out; -ms-transition: all .4s ease-in-out; -moz-transition: all .4s ease-in-out; -webkit-transition: all .4s ease-in-out; transition: all .4s ease-in-out; left: 0; right:0; margin: 0 !important; } .panel.flip .back { z-index: 1000; -webkit-transform: rotateX(0deg) rotateY(0deg); -moz-transform: rotateX(0deg) rotateY(0deg); }
Step 10:- Now lets start to dazzle things up a bit with some JS.
If you are working with a child theme you can go to Appearance -> Editor and open your stylesheet. If not, go to Appearance -> Divi Theme Options -> Integration ->Add code to <head> Section (which is located at the bottom of the ePanel)
Copy Below css code and paste in Custom Css Or stylesheet.
jQuery(document).ready(function(){ // set up hover panels // although this can be done without JavaScript, we've attached these events // because it causes the hover to be triggered when the element is tapped on a touch device jQuery('.hover').hover(function(){ jQuery(this).addClass('flip'); },function(){ jQuery(this).removeClass('flip'); }); });