Game industry veteran Brian Fargo will be the keynote speaker! _HTML5 Chinese website

During the period from November 12th to 14th Game industry veteran Brian Fargo At GDC China 2011, Mr. Fargo will give an overview of his personal In the 30-year RPG game development process, he reviews every classic work and shares his insights on all aspects of game creation. Speech topics will cover game storyline, character development, development balance and production philosophy. He will explain to the audience the key to making an immersive game that will stand the test of time: How do you make a game that makes people say to you, “I loved playing this game when I was a kid.” Game! I can’t stop playing for hours!”

Active Facebook users are turning to services like Twitter and Google+_HTML5中文网

Active Facebook users are turning to services like Twitter and Google+_HTML5中文网

According to news on October 19, Sean Parker, former president of Facebook and investor in streaming music service Spotify, said at the Web 2.0 Summit that Facebook’s biggest problem is that many active users are turning to other platforms such as Twitter and Google+. Serve. Parker said that Facebook’s biggest problem is not how to protect user privacy, but that some important users are turning to other services such as Twitter and Google+. Parker believes that the main reason for user churn is that Facebook does not help these users better manage information. Spotify, which Parker invested in, has decided to integrate with Facebook and require users to register with a Facebook account. Parker believes this is a huge opportunity for Spotify, which will gain access to Facebook’s approximately 800 million user base. Parker also expressed dissatisfaction with record companies and believed that artists can bypass record companies and become the master of their own destiny. Parker said: “There is no additional cost to copy a piece of music. The digital revolution has eliminated obstacles in the music sharing process, and it is more convenient for users to recommend music to friends.” He believes that record companies and artists The…

Google ditches Gears to embrace HTML5

Google ditches Gears to embrace HTML5

Google Gears is a new plug-in developed for browsers that allows web applications to be used offline, such as using Gmail offline to access emails. But Google has made up its mind to say goodbye to Google Gears. Why did Google abandon Gears? It’s not that Google Gears is not popular or powerful enough, but browsers can already support the things that Google Gears can do through the new standard of HTML5, and can keep the browser simple. Google has added support for the Database API (similar to Gears’ database API), support for local and shared workers (similar to the concept of cross-workers in Gears), local storage API and Web Sockets API in recent Chrome versions. support. In the future, new versions of the Chrome browser will also have support for similar APIs such as LocalServer API and Geolocation geographical information. Since there is no easy way to port previous Gears applications to HTML5 applications, Google will continue to support Gears until almost everyone deploys Gears applications as HTML5 applications, but Gears will not have new features. What’s particularly important is that Google will not support the use of Gears in the Safari browser on Mac OS X Snow Leopard…

Google announces that the Web has won HTML5 will greatly advance the Web

Google kicked off its I/O developer conference in San Francisco, enthusiastically endorsing new Web tools and adopting new standards, especially HTML 5, to drive a new generation of more innovative applications. Google Vice President Vic Gondotra said: “The Web has won, and this is the primary programming model we have adopted.” 51CTO Editor’s Recommendation: Foreign headlines on May 27: Google Developer Conference is about to open, GAE has become the biggest hot spot Gondotra and other Google staff showed off new tools, including Web Elements, designed to simplify the process of adding new features to websites. In a demo, a Google product manager demonstrated how to add functionality such as search and geolocation to a website by copying and pasting a piece of web element code. When discussing HTML 5, Gondotra later joined the official teams of Mozilla and Palm, both of which are very supportive of web content standards. Gondotra pointed out that leading browsers have already begun to support HTML 5, including Firefox, OPera and Chrome. Microsoft has announced support, but Gondotra seems to be more of a commitment. He said: “Microsoft can move the Web greatly forward, and we are pleased to hear Microsoft’s commitment to support…

23 famous logos created with pure CSS

23 famous logos created with pure CSS

This article will show 23 famous logos, which are encoded with pure CSS. With the support of drop shadow, rounded border, gradient and CSS3 transform, we can easily draw the famous logo diagram. Android Robot View CSS code Amro View CSS code Adidas View CSS code Adobe View CSS code Apple View CSS code Atari View CSS code BP View CSS code CBS View CSS code Cloud9 View CSS code Colorvivo View CSS code Dribbble View CSS code Google Chrome HTML5 View CSS code Internet Explorer View CSS code Magento View CSS code McDonalds View CSS code Nike View CSS code Opera Pepsi View CSS code Internet Explorer View CSS code Magento View CSS code McDonalds View CSS code Nike View CSS code Opera Pepsi View CSS code Twitter View CSS code Reddit Windows View CSS code Volkswagen le=”font-size: 14px; line-height: 25px; text-align: center; font-family: Helvetica, Tahoma, Arial, sans-serif; white-space: normal; “> View CSS code Twitter View CSS code Reddit Windows View CSS code Volkswagen

Use GoogleFontAPI to make text on web pages more beautiful

Use GoogleFontAPI to make text on web pages more beautiful

Google announced the launch of two services, Google Font Directory and Google Font API, on May 20. In the Google Font Directory, Google has united many font designers to provide users with a variety of beautiful fonts, but now they are all English fonts. I believe there will be Chinese fonts in the future. Google Font API and Google Font Directory complement each other, and users use the Google Font API to use fonts in the Google Font Directory. Let’s see how to use the Google Font API.  1. Search for fonts in Google Font Directory Go to Google Font Directory to select the appropriate font. Click on the selected font to see how it will appear in various sizes.    2. Quote font files Since these fonts do not exist on the local system, their font files must be referenced in the page. These files are hosted on Google’s cloud, reference them via the following.  3. Use fonts Use fonts by setting the font-family style of the html node to the font referenced above. h1 { font-family: ‘Reenie Beanie’, arial, serif; } Final effect   It’s cool, go try it!

How to achieve the Logo three-dimensional box effect using CSS styles

How to achieve the Logo three-dimensional box effect using CSS styles

Let’s take a look at how to achieve the effect of a three-dimensional box, and then we will show you some good examples. Prepare your page and picture first, we use this picture: We simply write HTML like this: The CSS style may look like this: body{background:#999;} #container{ width:960px; background:#fff; margin:20px auto; padding:10px;} The following is a preview of the effect: Set to relative positioning. When we position the logo, we want its position to be relative to the container, so use relative positioning: #container{width:960px;background:#fff;margin:20px auto;padding:10px;position:relative;} Position it outside the box Now all you need to do is position the logo, positioning it horizontally so that it protrudes from the container. #logo{position:absolute;left:-15px;} Now, we can see that the logo is displayed outside the box.

Google Chrome’s CSShack is coming

There are only so many “benefits” of having more browsers… The following CSS statements can currently only be interpreted normally by Google Chrome and Safari 3.1. body:nth-of-type(1) p { color: #333333;}The explanation of how this hack works is as follows: Each web page has only one body elementbody:nth-of-type(1) will match the first and only body element in the pageOnly Safari 3.1 and Google Chrome support:nth-of -type pseudo-classAttached is the support of various browsers for some css: Green / √ indicates full support Orange / Δ indicates partial support Red / Χ indicates no support Browsers Pattern Meaning IE6 IE7 IE8 FF Op9 Sf Op FF NS CHROME E:activeE:hoverE:focus Matches E during certain user actions. Δ Δ √ √ √ √ √ √ √ √ Δ Δ √ √ √ √ √ √ √ √ Χ Χ √ √ √ √ √ √ √ √ E:beforeE:after See Χ Χ Δ 3 √ √ √ √ √ √ √ Χ Χ Δ 3 √ √ √ √ √ √ √ iPhn Windows XP Mac OSX Selector Saf 3.0 Chrome FF 3.0 √ √ √ √ √ #id √ √ √ √ √ √ √ √ √ √ √ √ √ √ √…

The release of Go1.1, does supporting backward compatibility mean the rise of the Go language?

The release of Go1.1, does supporting backward compatibility mean the rise of the Go language?

Go language version 1.1 released! Main new features include:Maintain compatibility and support for backwards-compatible; add new libraries, especially in Real-time conditions on the compiler, libraries and runtime;Improved performance,Benchmark testing, etc.; includes improvements at the language level and provided tools. See the release notes for more details. It has been exactly one year since the first stable version 1.0 of the Go language was released. During this period, some maintenance versions were also released, including 1.0.1, 1.0.2 and 1.0.3, etc., mainly to fix bugs and improve stability. wait. Go language is the second open source programming language released by Google in 2009. The Go language is specially optimized for programming multi-processor system applications. Programs compiled using Go can be as fast as C or C++ code, are more secure, and support parallel processes. The original intention of Go’s development was to create a new programming language that supports the Internet and multi-core computing. Go is inspired by C and other languages ​​such as Pascal, Newsqueak and Limbo. In the TIOBE programming language rankings, Go language has always been in the bottom 50 languages, and there is no obvious upward trend. If Go language wants to make a breakthrough, Google needs to…

Google Official Development Guide: Four Tips to Improve Mobile Web Performance

Mobile Internet has been widely used around the world. By 2009, 50% of new Internet access will be from mobile devices (eMarket, 2008 and 2009). Internal data from Google shows that with the improvement of mobile browsers, users’ browsing habits are gradually improving. The page layout on mobile browsers is significantly different from that of desktop browsers. Therefore, if you want to develop an excellent browser on mobile devices, there are some precautions that developers need to understand in advance. Google network administrator Jeremy Weinstein gave some technical and non-technical suggestions on how to develop high-performance and good-experience web applications on mobile devices (Translator’s Note: The original text comes from Google Code, which can be considered an official Google development guide). Make your web pages and apps more mobile-friendly 1. Provide a prominent mobile version entrance on the desktop version If you have an image-heavy website and you develop a mobile version for it, do you still want mobile users to continue using the original desktop version? Make sure to let users know that there is a mobile version of your website. 2. Mobile URLs should follow idioms and promote them Although there is no rule that you must set…

Contact Us

Contact us

181-3619-1160

Online consultation: QQ交谈

E-mail: [email protected]

Working hours: Monday to Friday, 9:00-17:30, holidays off

Follow wechat
Scan wechat and follow us

Scan wechat and follow us

Follow Weibo
Back to top
首页
微信
电话
搜索