May, 02
2012
Front-Trends 2012

I don't really like to write huge lyric articles, so this will be just post with needed info for those who missed this great event and want to see all available materials.

All updates like link to videos and photos will be included a little later.


Mar, 10
2012
Block the loading of your site through iframe for third party sites

How to block using your website throught iframe? It's simple!

<script>
	if (window!= top) // if your website window is not top
		top.location.href=location.href
</script>

Feb, 27
2012
The problem with the audio tag

I was faced with an interesting problem while adding the sound effects to locking and unlocking my iPhone in CSS3.

When I was trying to specify the "src" attribute of audio source tag it cause Safari overload and the browser stopped responding. Here is the code:

<audio id="soundLock" controls="true">
	<source src="/p/iphone/sound/lock.ogg" type="audio/ogg" />
	<source src="/p/iphone/sound/lock.mp3" type="audio/mpeg" />
</audio>

Jan, 26
2012
How I made an iPhone 4 in CSS3

In 19th December 2011 I published my creation, iPhone4 in CSS3, to my website. Since that time more then 400 000 unique visitors saw it, many of them like and share it. And now i want to tell how I made it from the stage of beginning to the first tweet about it's finished.

Click "Read more" to find out how I made it.


Jan, 20
2012
iPhone 4 in CSS3 first month statistics

My great iPhone 4 in CSS3 was launched a month ago. And here is some stats.


ValueTitle
396,517Visits
370,657Unique Visitors
555,987Pageviews
1.40Pages/Visit
00:00:48Avg. Time on Site
81.03%Bounce Rate
93.45%% New Visits

Read full article to view more stats in charts;)


Jan, 17
2012
Site update & blog launch

Goog morning!

Few days ago I decided to update my website design and add a blog section. Redesign was an easiest part, blog developing is also not hard. The hardest thing is to write something interesting for you in my new blog. In this first article I'll try to describe what and what for will be my writing.

New design is very simple and understandable.

By the advice of Paul Grozyan (@grozyan) I combined "lab" and "project" sections. Because the project is only one for now, it's so tiny and looks like a lab experiment. There was idea to call the section "labject" but it was only idea:)

The most thing I like in new design is new code highlighting style! Here is an example how it works:

<!-- inclide prettify style file -->
<link href="/css/prettify.css" type="text/css" rel="stylesheet" />
<!-- inclide main prettify js file -->
<script src="/js/prettify.js"></script>
<script>
	$(document).ready(function(){
		prettyPrint(); // run code prettify on document.ready()
	});
</script>

<!-- construction for code prettify -->
<pre><code> 
Here is your code
</code></pre>


Mobile and Web Analytics