2015년 4월 20일 월요일

삼성전자 IoT제품 쇼핑몰 오픈

http://www.venturesquare.net/572370

The 64 Best Health and Fitness Apps of 2013 | Greatist

The 64 Best Health and Fitness Apps of 2013 | Greatist:



'via Blog this'

Hospital Apps, Patient Engagement Apps, Physician Apps - Fast!

Hospital Apps, Patient Engagement Apps, Physician Apps - Fast!:



'via Blog this'발행하기

The Global Healthcare & Mobile Medical App Development Open Day

The Global Healthcare & Mobile Medical App Development Open Day:



'via Blog this'

30 iPhone Apps To Help You Watch Your Health - Hongkiat

30 iPhone Apps To Help You Watch Your Health - Hongkiat:



'via Blog this'

mHealthNews | The Voice of Mobile Healthcare

mHealthNews | The Voice of Mobile Healthcare:



'via Blog this'

| Women’s Health Mobile Application Design

| Women’s Health Mobile Application Design:



'via Blog this'

Free website templates, +80 free website template files

Free website templates, +80 free website template files:



'via Blog this'

Free vector for free download about (143106) Free vector. sort by newest first

Free vector for free download about (143106) Free vector. sort by newest first:



'via Blog this'

10+ Responsive Css3 Menu Tutorials | Css3 Menus

10+ Responsive Css3 Menu Tutorials | Css3 Menus:



'via Blog this'

35+ Useful HTML5 And CSS3 Dropdown Menu for Free Download

35+ Useful HTML5 And CSS3 Dropdown Menu for Free Download:



'via Blog this'

Admin Dropdown Menu Template by w3layouts

Admin Dropdown Menu Template by w3layouts:



'via Blog this'

95+ Free jQuery CSS Drop Down Navigation Menu

95+ Free jQuery CSS Drop Down Navigation Menu:



'via Blog this'

2015년 4월 15일 수요일

구글 차트 API 시작하기 - Zetawiki

구글 차트 API 시작하기 - Zetawiki

[Recommend] Nice Admin Bootstrap Template

[sidebar bootstrap] Bootstrap Themes & Templates

[Sidebar Bootstrap] Template

[drop down] Bootstrap Sidebar & Sidebar Accordion Admin panel Menu

[drop down] pure-drawer

[drop down] 50+ Awesome Css3 jQuery Dropdown Menu Examples & Tutorials

[dropdown] Website Templates (Page 1 of 227) - Free Web Templates

[dropdown] 95+ free responsive website templates dropdown

Site Templates - Kerna - Responsive Multi-Purpose HTML Template | ThemeForest

Site Templates - Kerna - Responsive Multi-Purpose HTML Template | ThemeForest:



'via Blog this'

Lady | e-Commerce Shop Responsive Site Template (Shopping)

Lady | e-Commerce Shop Responsive Site Template (Shopping):



'via Blog this'

2015년 4월 9일 목요일

OSX Yosemite Ui kit

How to Add a Navigation Drawer in Android

20 Free HTML5 Web Templates

Animating CSS-Only Hamburger Menu Icons

Web Design Magazine

Speckyboy Web Design Magazine - Web Design News ...

8 Tools For Easily Creating a Mobile Version of Your Website

8 Tools For Easily Creating a Mobile Version of Your Website

15 Examples of Great Mobile Website Design - Etsy.com

15 Examples of Great Mobile Website Design


15 free ebooks for web designers

Test your websites in smartphone & tablet emulators

Google Web Designer

Google Web Designer

www.google.co.kr/webdesigner
Google Web Designer is a free, professional-grade HTML5 authoring tool. ... Create engaging, interactive HTML5-based designs and motion graphics that ... Now everything you create is accessible on any screen – desktop, tablet or mobile .

Your First Mobile App in Visual Studio

bMobilized: Create Mobile Websites

HTML5/JS Tools for Mobile‎

HTML5/JS Tools for Mobile‎http://js.devexpress.com/MobileDevelopment/

20 Free Responsive and Mobile Website Templates

Create a Mobile Website | Responsive Website Builder | Duda

TEMPLATED is a collection of free, Creative Commons-licensed CSS, HTML5, and responsive site templates, designed and built by Cherry and occasionally AJ.

2015년 4월 8일 수요일

HTML Video - Methods, Properties, and Events

<!DOCTYPE html>
<html>
<body>

<div style="text-align:center">
  <button onclick="playPause()">Play/Pause</button>
  <button onclick="makeBig()">Big</button>
  <button onclick="makeSmall()">Small</button>
  <button onclick="makeNormal()">Normal</button>
  <br>
  <video id="video1" width="420">
    <source src="mov_bbb.mp4" type="video/mp4">
    <source src="mov_bbb.ogg" type="video/ogg">
    Your browser does not support HTML5 video.
  </video>
</div>

<script>
var myVideo = document.getElementById("video1");

function playPause() {
    if (myVideo.paused)
        myVideo.play();
    else
        myVideo.pause();
}

function makeBig() {
    myVideo.width = 560;
}

function makeSmall() {
    myVideo.width = 320;
}

function makeNormal() {
    myVideo.width = 420;
}
</script>

<p>Video courtesy of <a href="http://www.bigbuckbunny.org/" target="_blank">Big Buck Bunny</a>.</p>
</body>
</html>

Sample Page

[login] login box hrml5 source

<style>
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.form-group {
  margin-bottom: 15px;
}
.btn-block {
  display: block;
  width: 100%;
}
</style>  

   <div class="container">
        <div class="row">
            <div class="col-md-4 col-md-offset-4">
                <div class="login-panel panel panel-default">
                    <div class="panel-heading">
                        <h3 class="panel-title">Please Sign In</h3>
                    </div>
                    <div class="panel-body">
                        <form role="form">
                            <fieldset>
                                <div class="form-group">
                                    <input class="form-control" placeholder="E-mail" name="email" type="email" autofocus>
                                </div>
                                <div class="form-group">
                                    <input class="form-control" placeholder="Password" name="password" type="password" value="">
                                </div>
                                <div class="checkbox">
                                    <label>
                                        <input name="remember" type="checkbox" value="Remember Me">Remember Me
                                    </label>
                                </div>
                                <!-- Change this to a button or input when using this as a form -->
                                <a href="index.html" class="btn btn-lg btn-success btn-block">Login</a>
                            </fieldset>
                        </form>
                    </div>
                </div>
            </div>
        </div>
    </div>

[button] hover effect source

<style>
.btn-info {
  font-family: "돋움,Arial";
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn {
  font-family: "돋움,Arial";
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
button, input, select, textarea {
  font-family: "돋움,Arial";
  font-size: "돋움,Arial";
  line-height: "돋움,Arial";
}

</style>

<div class="panel-body">
                            <h4>Outline Buttons</h4>
                            <p>
                                <button type="button" class="btn btn-outline btn-info">대사캘린더</button>
                                <button type="button" class="btn btn-outline btn-info">대사관리</button>
                                <button type="button" class="btn btn-outline btn-info">식사관리</button>
                                <button type="button" class="btn btn-outline btn-info">운동관리</button>

                            </p>

                        </div>

[button] Background Hover Effects

2015년 4월 5일 일요일

[Templates] 49 Free Responsive HTML5 CSS3 Website Templates

49 Free Responsive HTML5 CSS3 Website Templates


[PSD] 26 Free eCommerce PSD Templates

[image] Royalty Free images from Shuttercock

[image] Free Images for Public and Commercial Use

Free Images for Public and Commercial Use


15 Best Free Stock Photo Websites

Categories of free mobile wallpapers:

Categories of free mobile wallpapers:

http://wallpaper.mob.org/

[image] 8 KILLER MOBILE APPS FOR STOCK PHOTOGRAPHY

9 Free Tools to Help You Create a Mobile Website

[HTML5] Free web site SB Admin 2

[HTML5] 40 Best Free Bootstrap HTML5 Website Templates

40 Best Free Bootstrap HTML5 Website Templates


2015년 4월 4일 토요일

[JQuery] 15 Excellent Free JQuery Image Slider Plugins 2015

15 Excellent Free JQuery Image Slider Plugins 2015


UI Jquery‎

JavaScript / DHTML / AJAX Discussion

[jQuery] Jack Moore's Category

Colorbox Demonstration

[jQuery] plugin: Tablesorter 2.0

$(document).ready(function() 
    { 
        $("#myTable").tablesorter(); 
    } 
); 
    
http://tablesorter.com/docs/#

[JQuery] Drop Down Menu, Web Buttons, Animated jQuery ...

Collection of jQuery Menus with stunning visual effects and animations. Unlimited levels. Fully cross-browser. SE friendly. CSS-based. Lightweight. Unobtrusive.

http://apycom.com/

[JQuery Tutorial] jQuery - Tutorial

[JQuery] jQuery Essential Training with Joe Marini

[JQuery] Amazing Slider Sites - They have so many examples


Amazing Slider


An easy-to-use Windows & Mac app that enables you to create beautiful, professional, responsive jQuery Slider, YouTube Video GalleryWordPress Slider Plugin and Joomla Slideshow Module.
https://amazingslider.com/

[JQuery] jQuery Slider with Multiple Rows Thumbnails

jQuery Widgets for PC, Mobile and Touch Devices

What is jQWidgets?

jQWidgets represents a framework based on jQuery for building web-based applications that run on PC, Touch and Mobile devices. jQWidgets includes more than 40 UI widgets. jQWidgets is not a modified version of the jQuery UI toolkit. All widgets are designed from ground-up and based on a powerful common core. The framework core provides fundamental capabilities like support for widget extensions and inheritance, widget settings, internal event handling and routing, property change notifications, device and browser compatibility detection and adjustments.

Mobile Sliding Menu - Como hacer un menú de navegación adaptable a dispositivos móviles (Respo...

Javascript & JQuery teaching sites- little web hut

JavaScript & jQuery Tutorial for Beginners - 2 of 9 - jQuery Selectors

[R] JavaScript & jQuery Tutorial for Beginners - 1 of 9 - Getting Started

jQuery Tutorial #1 - jQuery Tutorial for Beginners

2015년 4월 3일 금요일

60 Free Responsive HTML5 CSS3 Website Templates

10 Design resources website you need to bookmark

10 Useful Javascript Libraries For Web Designers 2015

20 Best Free Responsive HTML5 CSS3 Website Templates

90 Absolutely Free Responsive HTML5 CSS3 Website Templates

Study HTML5 & CSS

A fast & lightweight polyfill for min/max-width CSS3 Media Queries (for IE 6-8, and more)

스마트폰에 최적화된 반응형웹사이트 템플릿 무료 소스 모음

Top 5 Web Design Trends For 2015

Create A Business Website‎ Adwww.google.com/Apps‎

Free Website Templates Page 1 of 19 - OS Templates

Best Free Responsive Html5 Css3 Templates and Themes in 2014

Best Free Responsive Html5 Css3 Templates and Themes in 2014


Best Free Responsive Html5 Css3 Website Templates in 2015

Free Responsive Website Templates | Free CSS

250+ Free Responsive HTML5 CSS3 Website Templates

100 Free Responsive HTML5 CSS3 Website Templates

Responsive Web Design Tutorial and Explanation

반응형 관련한 정보들을 취합해 봤습니다.

반응형 관련한 정보들을 취합해 봤습니다.

http://blog.viewtmedia.com/m/post/392

반응형 웹 기술 이해 - SK planet