Congratulations also from me! Good to see that project is moving forward! Also a very cool design with some fancy animations on hover. :-)
One hint: For the background image you can use srcset provided via wicket-core to only load an img with the required size, or to change it when resizing the window. (picture tag - not supported with IE11) - Sweet cat demo: http://googlechrome.github.io/samples/picture-element/ If you use the picture tag, you can configure a fallback to be used for IE or other browser which do not support it: * http://caniuse.com/#search=picture * http://caniuse.com/#search=srcset * http://caniuse.com/#search=source https://ci.apache.org/projects/wicket/guide/7.x/guide/resources.html#resources_3 //code <picture wicket:id="picture"> <source wicket:id="big" /> <source wicket:id="small" /> <img wicket:id="fallback" /> </picture> This will lead to a better performance for mobile devices with a bad connection. kind regards Tobias 2016-05-02 23:03 GMT+02:00 Andrea Del Bene <[email protected]>: > Congratulations Sebastien!!! And the new site is REALLY nice! > > Andrea > > On 02/05/2016 22:52, Sebastien wrote: > >> Dear Wicket jQuery UI users, >> >> I'm happy to announce the 4th anniversary of the project since its first >> release! :) >> >> *Stats* >> >> A few words about project's stats: >> - visits on the demo site almost reach 550k pageviews since its launch >> - artifact downloads are still increasing >> - Kendo UI is confirming its progression over jQuery UI >> >> There is a (very) big peak on march, which might be due to a recent InfoQ >> interview about Wicket 7.2.0 (on which Wicket jQuery UI was quoted) [1]. >> >> *Surprise!* >> >> This year, the project gets a very nice birthday gift from my >> best-geek-girl-friend! Thanks to her, the demo site has a brand new >> responsive skin :) >> It is not yet officially active, but you can still have a preview [2], >> your feedback is more than welcome! >> >> >> Thanks again for your confidence and, to whom is concerned, your very >> precious help! :) >> >> -Sebastien. >> >> [1] http://www.infoq.com/news/2016/03/apache-wicket-7.2 >> [2] http://163.172.29.241/wicket-jquery-ui/ >> >> >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: [email protected] >> For additional commands, e-mail: [email protected] >> > >
