사용자:LL/common.js: 두 판 사이의 차이

(새 문서: $( function() { 'use strict'; $( 'body' ).append( '<span id="to-top" style="font-size:14pt; color:#FFFFFF; background-color:#0077FF;" >△</span>' ); var $topButton = $( '#to-top'...)
 
잔글편집 요약 없음
2번째 줄: 2번째 줄:
'use strict';
'use strict';


$( 'body' ).append( '<span id="to-top" style="font-size:14pt; color:#FFFFFF; background-color:#0077FF;"  >△</span>' );
$( 'body' ).append( '<span id="to-top" style="font-size:20pt; color:pink; background-color:white;"  >△</span>' );
var $topButton = $( '#to-top' );
var $topButton = $( '#to-top' );


$topButton.css( {
$topButton.css( {
'color': '#FFF',
'color': 'pink',
'position': 'fixed',
'position': 'fixed',
'bottom': '-30px',
'bottom': '-30px',
33번째 줄: 33번째 줄:
'use strict';
'use strict';


$( 'body' ).append( '<span id="to-bottom" style="font-size:14pt; color:#FFFFFF;  background-color:#0077FF;"  >▽</span>' );
$( 'body' ).append( '<span id="to-bottom" style="font-size:20pt; color:pink;  background-color:#white;"  >▽</span>' );
var $bottomButton = $( '#to-bottom' );
var $bottomButton = $( '#to-bottom' );
var height=document.body.scrollHeight;
var height=document.body.scrollHeight;
var hminus=document.body.scrollHeight-"650";
var hminus=document.body.scrollHeight-"650";
$bottomButton.css( {
$bottomButton.css( {
'color': '#FFF',
'color': '#pink',
'position': 'fixed',
'position': 'fixed',
'bottom': '-30px',
'bottom': '-30px',

2017년 7월 14일 (금) 11:50 판

$( function() {
'use strict';

$( 'body' ).append( '<span id="to-top" style="font-size:20pt; color:pink; background-color:white;"   >△</span>' );
var $topButton = $( '#to-top' );

$topButton.css( {
	'color': 'pink',
	'position': 'fixed',
	'bottom': '-30px',
	'left': '4px',
	'cursor': 'pointer',
	'transition': 'bottom 0.5s',
	'-webkit-transition': 'bottom 0.5s',
	'user-select': 'none',
	'-webkit-user-select': 'none',
	'-moz-user-select': 'none',
	'-ms-user-select': 'none'
} ).click( function() {
	$( 'html, body' ).animate( { scrollTop: 0 }, 'slow' );
} );
/* 위에서 100픽셀 이내에 있으면 위 버튼을 숨깁니다. */
$( window ).scroll( function() {
	if ( $( window ).scrollTop() > 100 ) {
		$topButton.css( 'bottom', '4px' );
	} else {
		$topButton.css( 'bottom', '-30px' );
	}
} );
} );
/* 아래 버튼을 만듭니다. */
$( function() {
'use strict';

$( 'body' ).append( '<span id="to-bottom" style="font-size:20pt; color:pink;  background-color:#white;"  >▽</span>' );
var $bottomButton = $( '#to-bottom' );
var height=document.body.scrollHeight;
var hminus=document.body.scrollHeight-"650";
$bottomButton.css( {
	'color': '#pink',
	'position': 'fixed',
	'bottom': '-30px',
	'left': '42pt',
	'cursor': 'pointer',
	'transition': 'bottom 0.5s',
	'-webkit-transition': 'bottom 0.5s',
	'user-select': 'none',
	'-webkit-user-select': 'none',
	'-moz-user-select': 'none',
	'-ms-user-select': 'none'
} ).click( function() {
	$( 'html, body' ).animate( { scrollTop:height}, 'slow' );
} );
/*아래에서 100픽셀 이내이면 아래 버튼을 숨깁니다. */
$( window ).scroll( function() {
	if ( $( window ).scrollTop () <hminus ) {
		$bottomButton.css( 'bottom', '4px' );
	} else {
		$bottomButton.css( 'bottom', '-30px' );
	}
} );
} );