- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
import static com.google.gwt.query.client.GQuery.*;
import com.google.gwt.query.client.Function;
public void onModuleLoad() {
//Hide the text and set the width and append an h1 element
$("#text").hide()
.css("width", "400px")
.prepend("<h1>GwtQuery Rocks !</h1>");
//add a click handler on the button
$("button").click(new Function(){
public void f() {
//display the text with effects and animate its background color
$("#text").as(Effects)
.clipDown()
.animate("backgroundColor: 'yellow'", 500)
.delay(1000)
.animate("backgroundColor: '#fff'", 1500);
}
});
}
Не ГК, но мне показалось забавно.
https://code.google.com/p/gwtquery/
volter9 25.09.2014 08:28 # +1
inkanus-gray 25.09.2014 08:52 # +1
P.S. Не сразу заметил ссылку под кодом.
volter9 25.09.2014 09:14 # 0
inkanus-gray 25.09.2014 08:57 # 0
bormand 25.09.2014 09:28 # 0
tirinox 25.09.2014 11:08 # 0
:D
javahutt 26.09.2014 01:30 # 0
bormand 26.09.2014 05:21 # +2
Да, это нестандартное расширение (но, вроде бы, в вижуалке тоже есть).
> как такие символы манглятся
У gcc - никак. Просто линкер тоже считает его допустимым символом.
inkanus-gray 26.09.2014 07:09 # +2
Видимо, для совместимости с говном мамонта самой прогрессивной операционной системой баксы сохранили и в других компиляторах.
bormand 26.09.2014 07:44 # +5
Операционная система была написана на 'PHP'.
guest 26.09.2014 17:07 # −1
Lokich 26.09.2014 19:44 # 0