Slide-Based Magic Move Demo

Introduction

This demo shows slide-based magic move where consecutive slides with the .magic-move class animate between each other.

Step 1

Year.Release <- game$Year.Release
counts <- data.frame(table(Year.Release))

Step 2

Year.Release <- game$Year.Release
counts <- data.frame(
  table(Year.Release)
)

Step 3

Year.Release <- game$Year.Release
counts <- data.frame(
  table(Year.Release)
)
p <- game %>%
  select(Year.Release, Global.Sales)

Step 4

Year.Release <- game$Year.Release
counts <- data.frame(
  table(Year.Release)
)
p <- game %>%
  select(Year.Release, Global.Sales) %>%
  group_by(Year.Release) %>%
  summarise(Total.Sales = sum(Global.Sales))

Break

This is a normal slide without magic-move.

It breaks the sequence.

Another sequence

const x = 1

Final

const x = 1
const z = x + y
const y = 2

Continued

const x = 1
const y = 2

End

That’s all folks!