Another good one to look at in terms of performance is impress.js, which looks pretty dang good in web view.
Richard On Jul 23, 2013, at 4:00 PM, Richard Bair <richard.b...@oracle.com> wrote: > No, I tried running > http://www.the-art-of-web.com/css/3d-transforms/#.UemI7BK9LCQ in WebView and > other than a bug (the transforms are not drawn right, maybe the wrong Z > values since web uses the opposite Z values that we do) the CSS 3 transforms > look good and run fast. > > Richard > > On Jul 23, 2013, at 3:54 PM, Richard Bair <richard.b...@oracle.com> wrote: > >> Just thinking, it might also be CSS 3 transforms are not supported yet in >> WebView? I'm not certain, will need to hear back from Peter. >> >> Richard >> >> On Jul 23, 2013, at 3:53 PM, Richard Bair <richard.b...@oracle.com> wrote: >> >>> I've filed https://javafx-jira.kenai.com/browse/RT-31885, lets see how that >>> turns out. >>> >>> Richard >>> >>> On Jul 23, 2013, at 3:49 PM, Richard Bair <richard.b...@oracle.com> wrote: >>> >>>> Doh, that's just what you said :-) >>>> >>>> On Jul 23, 2013, at 3:49 PM, Richard Bair <richard.b...@oracle.com> wrote: >>>> >>>>> I'm not seeing anything at all, beyond a fuzzy background image (similar >>>>> app to yours): >>>>> >>>>> import javafx.application.Application; >>>>> import javafx.scene.Scene; >>>>> import javafx.scene.web.WebView; >>>>> import javafx.stage.Stage; >>>>> >>>>> public class HelloWebView extends Application { >>>>> @Override public void start(Stage stage) throws Exception { >>>>> WebView web = new WebView(); >>>>> web.getEngine().load("http://famo.us/"); >>>>> Scene scene = new Scene(web); >>>>> stage.setScene(scene); >>>>> stage.setTitle("HelloWebView"); >>>>> stage.show(); >>>>> } >>>>> >>>>> public static void main(String[] args) { >>>>> launch(args); >>>>> } >>>>> } >>>>> >>>>> I'm on Mac. What OS are you running on? >>>> >>> >> >