The Sourcing Pen - Your software marketing partner.:
'via Blog this'
2015년 4월 28일 화요일
2015년 4월 26일 일요일
2015년 4월 22일 수요일
2015년 4월 21일 화요일
2015년 4월 20일 월요일
2015년 4월 19일 일요일
2015년 4월 18일 토요일
2015년 4월 16일 목요일
2015년 4월 15일 수요일
2015년 4월 14일 화요일
2015년 4월 12일 일요일
2015년 4월 11일 토요일
2015년 4월 9일 목요일
8 Tools For Easily Creating a Mobile Version of Your Website
8 Tools For Easily Creating a Mobile Version of Your Website
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
<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>
.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>
.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>
2015년 4월 7일 화요일
2015년 4월 5일 일요일
[Templates] 49 Free Responsive HTML5 CSS3 Website Templates
49 Free Responsive HTML5 CSS3 Website Templates
[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
[jQuery] Jack Moore's Category
http://www.jacklmoore.com/notes/#tag-jquery
- Rounding Decimals in JavaScript
- Cross-browser mouse positioning
- CSS Ribbon Menu
- jQuery Modal Tutorial
- A Better jQuery Accordion
- Fixing IE's Opacity Inheritance
- jQuery Tabs Tutorial
- HTML5 Placeholder Attribute
- NaturalWidth and NaturalHeight in IE
- Colorbox with Flickr Feed
- Tragedy Struck On Threadless
- Working with JavaScript click events
- Solving IE7 & IE8 PNG Opacity Problems
- JavaScript: Slice, Substring, or Substr?
[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/
http://apycom.com/
[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 Gallery, WordPress Slider Plugin and Joomla Slideshow Module.
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.2015년 4월 3일 금요일
피드 구독하기:
덧글 (Atom)