
The process of conceiving and constructing a presentation is often hard.
Sometimes we're stuck with Keynote or PowerPoint, and the templates are extremely limited and generic.
Today, we're going to learn how to create an awesome and animated presentation using HTML, CSS, and JavaScript.
If you're a beginner, don't worry! This tutorial will be easy enough to keep up with.
For this progect, we're going to use a framework called Reveal.js.
It provides robust functionality for creating interesting and customizable presentations.
- Go to the Reveal.js repository and clone the project
- Change directories into your newly cloned folder and run npm install to download the package dependencies. Then run npm start to run the project.
Built-In Themes
Reveal includes 11 themes. At this point, you will surely want to know how to change a theme
- Open index.html
- Change the CSS import to reflect the theme you want to use
The theme files are:
- beige.css
- black.css
- blood.css
- league.css
- moon.css
- night.css
- serif.css
- simple.css
- sky.css
- solarized.css
- white.css
Let's create a custom theme.
- Open css/theme/src inside your IDE. This holds all of the Sass files (.scss) for each theme. You can use a JavaScript task runner like Grunt (the files will be transpiled to CSS) or you can just create the CSS file inside css/theme.
- If you decide to use a JavaScript task runner, now you have to create a new .scss file. You can call the file custom.scss. You may have to stop your localhost and run npm run build to transpile your Sass code to CSS.
- Inside the index.html file, change the CSS theme import in the <head>tag to use the name of the newly created stylesheet.
- Now you can created variables for all of the different styles you want to use.
IMPORTANT: If you decide to use a JavaScript task runne add a .reveal class to the custom Sass file.
Mixins & Settings
Reveal.js also allows mixins and settings you can leverage in your custom theme.
To use them, just import the files:
@import "../template/mixins"; @import "../template/settings";
Playing with elements
The structure for adding new content is:
.reveal > .slides > section
The <section>
element represents one slide. Add as many sections as you need for your content.
How to make vertical slides
To create vertical slides, simply nest sections.
How to add Transitions
There are 6 different slide transitions to choose from:
- None
- Fade
- Slide
- Convex
- Concave
- Zoom
To use them, add a data-transition="{name}"
to the <section>
which contains your slide data.
How to add Fragments
Fragments are great for highlighting specific pieces of information on your slide. Here is an example.
To use fragments, add a class="fragment {type-of-fragment}"
to your element.
The types of fragments can be:
- grow
- shrink
- fade-out
- fade-up
- fade-in-then-out
- fade-in-then-semi-out
- highlight-current-blue
- highlight-red
- highlight-green
- highlight-blue
You can additionally add indices to your elements to indicate in which order they should be highlighted or displayed by using the data-fragment-index={index} attribute.
Enjoy!
Image by StartupStockPhotos from Pixabay
Janeth Kent
Licenciada en Bellas Artes y programadora por pasión. Cuando tengo un rato retoco fotos, edito vídeos y diseño cosas. El resto del tiempo escribo en MA-NO WEB DESIGN END DEVELOPMENT.
Related Posts
Creating simple CSS spinner-loader
In today's article we will show you how to animate a basic loader that spins when some predefined action is defined, such as loading an image. That can be used…
Validating HTML forms using BULMA and vanilla JavaScript
Today we are going to write about contact forms and how to validate them using JavaScript. The contact form seems to be one of the top features of every basic home…
A FULFILLED PROMISE - Using the FETCH API to make AJAX calls
In this article we talked about what AJAX calls are and how to use them in a traditional way, by using the XMLHttpRequest (XHR) object. In short, thanks to AJAX…
How to use Parallax.js effect on your website
Today, we're going to write about the parallax effect, similar to parallax scrolling, and how to implement it to improve your landing page. In webdev, they say mobile first -…
How to make the website's dark mode persistent with Local Storage, CSS and JS
Recently we wrote about how to do a switchable alternative color mode or theme, a very useful and popular feature to websites. Today’s article is going to be about how…
The easiest way to align items using flexbox
With the release of flexbox in CSS, it has become an essential tool when placing elements next to each other, since, by default, the children of a display: flexare stacked…
Dark Mode on website using CSS and JavaScript
In today’s article we are going to learn how to build pretty much standard these days on the web pages and that is the alternative color mode and switching between…
JavaScript: Spread and Rest operators
In today’s article we are going to talk about one of the features of the ES6 version(ECMAScript 2015) of JavaScript which is Spread operator as well as Rest operator. These features…
How To Add Filter Effects to Images with CSS
To achieve interesting effects on your images, learn about the 'filter' and 'Backdrop-Filter' properties of CSS. CSS filters are a very attractive feature of CSS that allows you to apply certain…
Javascript: what are callbacks and how to use them.
Today we are going to learn about a concept that is widely used in javascript and that is used quite a lot by today's frameworks, libraries, especially NodeJS. This is…
HTTP Cookies: how they work and how to use them
Today we are going to write about the way to store data in a browser, why websites use cookies and how they work in detail. Continue reading to find out how…
The package managers npm and yarn: main differences
Npm and yarn are package managers that help to manage a project’s dependencies. A dependency is, as it sounds, something that a project depends on, a piece of code that…