【Labs】背景色変更ボタン - web design lab
にほんブログ村 デザインブログ Webデザインへ PVアクセスランキング にほんブログ村

【Labs】背景色変更ボタン


【Labs】背景色変更ボタン

こんにちは(・∀・)

JavaScriptを使用したサンプルをご紹介します。今回は背景色を変更するスクリプトのサンプルです。

背景色変更ボタン

HTML

<div class="bgcolor">
<script src="bgcolor.js"></script>
<!--bgcolor--></div>
CSS

.sample-demo .sample-bgcolor {
  padding: 10px;
}
header,
header section,
footer {
  background-color: transparent;
}
@media (min-width: 768px) {
.sample-demo .sample-bgcolor {
  width: 1038px;
  margin: 0 auto;
  padding: 0 0 10px 0;
}
/* ** */}
JavaScript

/*クッキー*/
cb_name = "bgcolor";
function  changebgcolor(obj){
document.cookie = cb_name+"="+obj+"; expires=Fri, 31-Dec-2030 23:59:59 GMT; path=/;";
window.location.reload(true);
}
Cookie = document.cookie+";";
cb_set1 = Cookie.indexOf(cb_name);
if(cb_set1 != -1){
cb_set2 = Cookie.indexOf("=",cb_set1);
cb_set3 = Cookie.indexOf(";",cb_set2);
cb_value = Cookie.substring(cb_set2+1, cb_set3);
}else{
cb_value = 0;
}
/*CSS*/
document.write('<style>');
document.write('.sample-bgcolor {overflow: hidden;}');
document.write('.sample-bgcolor p {float: left;margin: 0 10px 0 0;}');
if(cb_value == 0){
document.write('body {background: #ccc;color: #fcfcfc;}');
document.write('a,a:link,a:visited,a:hover,a:active {color: #3283f2;}');
}else if(cb_value == 1){
document.write('body {background: #fff;color: #333;}');
document.write('a,a:link,a:visited,a:hover,a:active {color: #3283f2;}');
}else{
document.write('body {background: #ccc;color: #fcfcfc;}');
document.write('a,a:link,a:visited,a:hover,a:active {color: #3283f2;}');
}
document.write('</style>');
/*ボタン*/
if(cb_value == 0){
document.write('<span>グレー </span>');
document.write('<span><a href="javascript:void(0)" onclick="changebgcolor(1); return false;">白</a></span>');
}else if(cb_value == 1){
document.write('<span><a href="javascript:void(0)" onclick="changebgcolor(0); return false;">グレー</a> </span>');
document.write('<span>白 </span>');
}else{
document.write('<span>グレー </span>');
document.write('<span><a href="javascript:void(0)" onclick="changebgcolor(1); return false;">白</a></span>');
}
Result

サンプルデモ

関連リンク

【jQuery】jquery.cookie.jsで背景色変更ボタン


にほんブログ村 デザインブログ Webデザインへ PVアクセスランキング にほんブログ村