Advertisement
Serafim

Untitled

Oct 21st, 2013
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. @scene = new Boo.Scene 320, 31
  3. ctx = @scene.context
  4.  
  5. ctx.style 'header.panel',
  6.   color: '#550506'
  7.   stroke: '#3e0305'
  8.  
  9. ctx.style 'header.text',
  10.   font:
  11.     family: 'Arial'
  12.     weight: 'bold'
  13.     size:   15
  14.     align:  'center'
  15.     variant:'small-caps'
  16.   color: '#fff'
  17.   shadow:
  18.     color: '#2f0103'
  19.     top: 1
  20.  
  21. @scene.append (ctx) =>
  22.   ctx.save()
  23.   ctx.style 'header.panel'
  24.   ctx.rect [0, 0],  [@scene.resolution.width, 30]
  25.   ctx.line [0, 30], [@scene.resolution.width, 30]
  26.   ctx.style 'header.text'
  27.   ctx.text 'Заголовок', [@scene.resolution.width/2, 7]
  28.   ctx.restore()
  29. @scene.drawAll()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement