mirror of
https://github.com/pipipi-pikachu/PPTist.git
synced 2025-04-15 02:20:00 +08:00
78 lines
1.7 KiB
TypeScript
78 lines
1.7 KiB
TypeScript
import { Slide } from '@/types/slides'
|
|
|
|
export const slides: Slide[] = [
|
|
{
|
|
id: 'test123456',
|
|
elements: [
|
|
{
|
|
type: 'shape',
|
|
id: '4cbRxp',
|
|
left: 0,
|
|
top: 200,
|
|
width: 546,
|
|
height: 362.5,
|
|
viewBox: 200,
|
|
path: 'M 0 0 L 0 200 L 200 200 Z',
|
|
fill: '#5b9bd5',
|
|
fixedRatio: false,
|
|
opacity: 0.7,
|
|
rotate: 0
|
|
},
|
|
{
|
|
type: 'shape',
|
|
id: 'ookHrf',
|
|
left: 0,
|
|
top: 0,
|
|
width: 300,
|
|
height: 320,
|
|
viewBox: 200,
|
|
path: 'M 0 0 L 0 200 L 200 200 Z',
|
|
fill: '#5b9bd5',
|
|
fixedRatio: false,
|
|
flipV: true,
|
|
rotate: 0
|
|
},
|
|
{
|
|
type: 'text',
|
|
id: 'idn7Mx',
|
|
left: 355,
|
|
top: 65.25,
|
|
width: 585,
|
|
height: 188,
|
|
lineHeight: 1.2,
|
|
content: '<p><strong><span style=\'font-size: 112px\'>PPTIST</span></strong></p>',
|
|
rotate: 0,
|
|
defaultFontName: 'Microsoft Yahei',
|
|
defaultColor: '#333'
|
|
},
|
|
{
|
|
type: 'text',
|
|
id: '7stmVP',
|
|
left: 355,
|
|
top: 253.25,
|
|
width: 585,
|
|
height: 56,
|
|
content: '<p><span style=\'font-size: 24px\'>基于 Vue 3.x + TypeScript 的在线演示文稿应用</span></p>',
|
|
rotate: 0,
|
|
defaultFontName: 'Microsoft Yahei',
|
|
defaultColor: '#333'
|
|
},
|
|
{
|
|
type: 'line',
|
|
id: 'FnpZs4',
|
|
left: 361,
|
|
top: 238,
|
|
start: [0, 0],
|
|
end: [549, 0],
|
|
points: ['', ''],
|
|
color: '#5b9bd5',
|
|
style: 'solid',
|
|
width: 2,
|
|
},
|
|
],
|
|
background: {
|
|
type: 'solid',
|
|
color: '#ffffff',
|
|
},
|
|
}
|
|
] |