Auto Background Color Changing

Material Required.

  1. WordPress website
  2. Elementor Pro ( get elementor pro ). Elementor is a free and open source Page Builder plugin that lets you create any type of layout imaginable. It’s lightweight, mobile friendly, and works with any WordPress theme. Because it’s built by an active community of designers, developers, and bloggers (like you), Elementor always feels fresh—it has a design catalog that’s constantly updated with new layouts and templates. Plus, if there are designs or templates you like but want to make tweaks to them—you can! You have full control over every aspect of your site thanks to Elementor’s powerful yet easy-to-use drag-and-drop interface. If you like how a template looks but not necessarily what it does – just change it! Want something entirely different?
  3. Watch full video given below

Introduction.

Create a  AUTO BACKGROUND COLOR CHANGING  using the Elementor Page Builder and customize the Elementor Text Stroke plugin settings. Let’s dive in! I’ll be using the demo site. Elementor, a powerful and beautiful page builder, has many features that will help you create stunning web pages easily, such as creating stunning text effects without much effort. 


  1. /*Copyrighted By Tamoor Digital*/

  2. selector{
  3. --color-1: #17f197;
  4. --color-2: #ff3b6c;
  5. --color-3: #28a2fc;
  6. --color-4: #F16232;
  7. --color-5: #92003B;
  8. --changing-time: 10s;
  9. }
  10. selector{
  11. animation: background-color infinite var(--changing-time);
  12. }
  13. @keyframes background-color{
  14. 0%{
  15. background: var(--color-1);
  16. }
  17. 20%{
  18. background: var(--color-2);
  19. }
  20. 40%{
  21. background: var(--color-3);
  22. }
  23. 60%{
  24. background: var(--color-4);
  25. }
  26. 80%{
  27. background: var(--color-5);
  28. }
  29. 100%{
  30. background: var(--color-1);
  31. }
  32. }