mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-11-01 07:45:01 -04:00
37 lines
515 B
Plaintext
37 lines
515 B
Plaintext
---
|
|
layout: page
|
|
title: "Textile"
|
|
date: 2011-08-01 08:13
|
|
comments: true
|
|
sharing: true
|
|
footer: true
|
|
---
|
|
|
|
``` coffeescript
|
|
_Tweets_ = 1
|
|
|
|
module.exports = Tweets
|
|
```
|
|
|
|
``` coffeescript
|
|
$(document).ready =>
|
|
bar
|
|
console.log "hereh"
|
|
val=0
|
|
|
|
rott= =>
|
|
val=val+1
|
|
$("img.logo").style.webkitTransform="rotate("+val+"deg)"
|
|
$("img.logo").style.mozTransform="rotate("+val+"deg)"
|
|
|
|
|
|
|
|
settimeout = =>
|
|
window.setTimeout 100, =>
|
|
console.log "rotating"
|
|
rott()
|
|
settimeout()
|
|
|
|
settimeout()
|
|
```
|