Advertisement
Guest User

Untitled

a guest
Apr 26th, 2017
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
QML 0.48 KB | None | 0 0
  1.     Image {
  2.         id: img
  3.         visible: false
  4.         source: "http://i.imgur.com/ETzqo87.png"
  5.         height: window.height * 0.15
  6.         fillMode: Image.PreserveAspectFit
  7.     }
  8.  
  9.     Row {
  10.         anchors.bottom: parent.bottom
  11.         Repeater {
  12.             model: Math.ceil(window.width / img.width)
  13.             ShaderEffectSource {
  14.                 sourceItem: img
  15.                 height: img.height
  16.                 width: img.width
  17.             }
  18.         }
  19.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement