押した事が感覚的にわかるので、思わずポチりたくなる!!!
かもしれないボタン付きのヨメレバ・カエレバ・トマレバをつくりました。
*2016年10月9日 修正しました。一部余計な文字列や記述の不完全な部分がありましたので、使用されている方はコードの置き換えをお願いします。
10月14日 jtbの色を修正しました。ボタンのサイズ、文字サイズを修正しました。
10月15日 1024pxのメディアクエリを追加。yahooがどうしても崩れてしまうのでボタンが縦並びになる解像度を1024pxに変更しました。
なお、CSSをきちんと勉強した事の無い人間が書くCSSなので、β版のようなものとして御考え下さい。
改造や手直しした物を掲載される時は、言及してもらえると嬉しいです。
はじめに
CSSのコードが改行含めて300行弱(最初は600行超えてました・・・)ありますが、
それでもCSSをコピペするだけで完成します。(将来的にもう少し軽量化をはかれたら・・・と思ってます。)
ボタン以外の部分は基本先日紹介したものと同じです。
以下実物です。当サイト用にカスタマイズしてあるので、掲載しているものとは色と枠が少し違うものになっていますがボタンの挙動は全く同じです。
いかがでしょう?挙動のあるボタンは動きがあるのでもしかするとポチってもらえる確率が上がる、かも知れません。
本格的に売り上げを気にされる方はA/Bテスト等で比較する事をオススメします。
今回のボタンは、以前書いた記事二つを応用したものになります。
blog.mshimfujin.net blog.mshimfujin.net
使えるボタンの種類
amazon、kindle、楽天、楽天kobo、yahoo、7net、価格コム、じゃらん、JTB
今のところ、これだけ用意しております。
PC版
上から、カエレバ・ヨメレバ・トマレバ
スマホ版
カエレバのみ。
スマホ版2
ボタンをこんな感じで並べる事もできます。
コピペする場所
まずはコピペ場所を開きます。
場所は「デザイン」→「カスタマイズ」→「デザインCSS」です。
ここをクリックして
レスポンシブで使う事を考えていますが、スマホ版で使っても大丈夫なようになっていると思います。
スマホ版のコードの張り方は目次から飛んで該当する部分を見てください。下の方にあります。
CSS
すでにカスタマイズ版を導入されている方は、それを消去してからコピペしてください。繰り返しになりますが、300行弱あります。少々長くはありますが、カスタマイズ無しならコピペするだけで終わります。
/*---------------------------------------------------- ヨメレバ・カエレバ・トマレバ 動きのあるボタン ----------------------------------------------------*/ .booklink-box, .kaerebalink-box, .tomarebalink-box{ padding:25px; margin-bottom: 10px; border:double #CCC; overflow: hidden; font-size:small; } .booklink-image, .kaerebalink-image, .tomarebalink-image{ margin:0 15px 0 0; float:left; min-width: 160px; text-align: center; } .booklink-image img, .kaerebalink-image img, .tomarebalink-image img{ margin:0 auto; text-align:center; } .booklink-info, .kaerebalink-info, .tomarebalink-info{ margin:0; line-height:120%; overflow: hidden; } .booklink-name, .kaerebalink-name, .tomarebalink-name{ border-top:5px solid #ccc; margin-bottom:24px; padding-top:5px; line-height:1.5em; } .booklink-name a, .kaerebalink-name a, .tomarebalink-name a { font-weight: bold; text-decoration: none; } .booklink-powered-date, .kaerebalink-powered-date, .tomarebalink-powered-date{ font-size:8px; margin-top:10px; font-family:verdana; line-height:120%; border-top:1px solid #ccc; text-align:right; padding:2px; } .booklink-detail, .kaerebalink-detail, .tomarebalink-detail{font-size: 12px;} .booklink-powered-date, .kaerebalink-powered-date, .tomarebalink-powered-date{margin-bottom:15px;} .booklink-link2, .kaerebalink-link1, .tomarebalink-link1{margin-top:10px;} .kaerebalink-link1 a { /* カエレバ */ width: 30%; /* 横に並べたい項目が二つなら46% */ } .booklink-link2 a { /* ヨメレバ */ width: 30%; /* 横に並べたい項目が二つなら46% */ } .tomarebalink-link1 a { /* トマレバ */ width: 30%; /* 横に並べたい項目が二つなら46% */ } .kaerebalink-link1 a, .booklink-link2 a, .tomarebalink-link1 a { -moz-border-radius:5px; -webkit-border-radius:5px; border-radius:5px; display:inline-block; margin:5px 2px 0 0; padding:10px 1px; text-align:center; float:left; text-decoration:none; font-weight:800; font-size:12px; } .booklink-link2 a:active .kaerebalink-link1 a:active, .tomarebalink-link1 a:active { position: relative; top: 1px; } /* amazon */ .shoplinkamazon a { color: #FF9901 ; /* 文字の色 */ border: solid 1px #FF9901 ; /* ボーダー色 */ } .shoplinkamazon a:hover { background-color: #ff9901; /* カーソルを重ねた時の背景色 */ } /* 楽天 */ .shoplinkrakuten a { color: #c20004 ; /* 文字の色 */ border: solid 1px #c20004 ; /* ボーダー色 */ } .shoplinkrakuten a:hover { background-color: #c20004; /* カーソルを重ねた時の背景色 */ } /* kindle */ .shoplinkkindle a { color: #007dcd; /* 文字の色 */ border: solid 1px #007dcd ; /* ボーダー色 */ } .shoplinkkindle a:hover { background-color: #007dcd; /* カーソルを重ねた時の背景色 */ } /* 価格 */ .shoplinkkakakucom a { color: #314995; /* 文字の色 */ border: solid 1px #314995 ; /* ボーダー色 */ } .shoplinkkakakucom a:hover { background-color: #314995; /* カーソルを重ねた時の背景色 */ } /* kobo */ .shoplinkrakukobo a { color: #990000; /* 文字の色 */ border: solid 1px #990000 ; /* ボーダー色 */ } .shoplinkrakukobo a:hover { background-color: #990000; /* カーソルを重ねた時の背景色 */ } /* yahoo */ .shoplinkyahoo a { color: #7b0099; /* 文字の色 */ border: solid 1px #7b0099 ; /* ボーダー色 */ } .shoplinkyahoo a:hover { background-color: #7b0099; /* カーソルを重ねた時の背景色 */ } .shoplinkyahoo img { display: none; } .shoplinkyahoo a { font-size: 10px; } /* 7net */ .shoplinkseven a { color: #82c36f ; /* 文字の色 */ border: solid 1px #82c36f ; /* ボーダー色 */ } .shoplinkseven a:hover { background-color: #82c36f; /* カーソルを重ねた時の背景色 */ } /* jtb */ .shoplinkjtb a { color: #990000 ; /* 文字の色 */ border: solid 1px #990000 ; /* ボーダー色 */ } .shoplinkjtb a:hover { background-color: #990000; /* カーソルを重ねた時の背景色 */ } /* jalan */ .shoplinkjalan a { color: #FF9901 ; /* 文字の色 */ border: solid 1px #FF9901 ; /* ボーダー色 */ } .shoplinkjalan a:hover { background-color: #FF9901; /* カーソルを重ねた時の背景色 */ } .booklink-link2 a:hover, .kaerebalink-link1 a:hover, .tomarebalink-link1 a:hover{opacity: 0.6;} .booklink-link2 a:active, .kaerebalink-link1 a:active, .tomarebalink-link1 a:active{ position:relative; top:1px; } .shoplinkamazon a, .shoplinkrakuten a, .shoplinkkindle a, .shoplinkkakakucom a, .shoplinkrakukobo a, .shoplinkyahoo a, .shoplinkseven a, .shoplinkjtb a, .shoplinkjalan a { position: relative; -webkit-backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition: background-color 0.3s, color 0.3s; transition: background-color 0.3s, color 0.3s; } .shoplinkamazon a:hover, .shoplinkrakuten a:hover, .shoplinkkindle a:hover, .shoplinkkakakucom a:hover, .shoplinkrakukobo a:hover, .shoplinkyahoo a:hover, .shoplinkseven a:hover, .shoplinkjtb a:hover, .shoplinkjalan a:hover { -webkit-transition: background-color 0.1s 0.3s, color 0.1s 0.3s; transition: background-color 0.1s 0.3s, color 0.1s 0.3s; color: #fff; /* カーソルを重ねた時の文字色 */ -webkit-animation: anim-1 0.3s forwards; animation: anim-1 0.3s forwards; } .shoplinkamazon a:focus, .shoplinkrakuten a:focus, .shoplinkkindle a:focus, .shoplinkkakakucom a:focus, .shoplinkrakukobo a:focus, .shoplinkyahoo a:focus, .shoplinkseven a:focus, .shoplinkjtb a:focus, .shoplinkjalan a:focus { outline: none; } .shoplinkamazon a::before, .shoplinkrakuten a::before, .shoplinkkindle a::before, .shoplinkkakakucom a::before, .shoplinkrakukobo a::before, .shoplinkyahoo a::before, .shoplinkseven a::before, .shoplinkjtb a::before, .shoplinkjalan a::before { content: ''; position: absolute; top: -10px; left: -10px; bottom: -10px; right: -10px; background: inherit; z-index: -1; opacity: 0.4; -webkit-transform: scale3d(0.8, 0.5, 1); transform: scale3d(0.8, 0.5, 1); } .shoplinkamazon a:hover::before, .shoplinkrakuten a:hover::before, .shoplinkkindle a:hover::before, .shoplinkkakakucom a:hover::before, .shoplinkrakukobo a:hover::before, .shoplinkyahoo a:hover::before, .shoplinkseven a:hover::before, .shoplinkjtb a:hover::before, .shoplinkjalan a:hover::before { -webkit-animation: anim-2 0.3s 0.3s forwards; animation: anim-2 0.3s 0.3s forwards; } @-webkit-keyframes anim-1 { 60% { -webkit-transform: scale3d(0.8, 0.8, 1); transform: scale3d(0.8, 0.8, 1); } 85% { -webkit-transform: scale3d(1.1, 1.1, 1); transform: scale3d(1.1, 1.1, 1); } 100% { -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); } } @keyframes anim-1 { 60% { -webkit-transform: scale3d(0.8, 0.8, 1); transform: scale3d(0.8, 0.8, 1); } 85% { -webkit-transform: scale3d(1.1, 1.1, 1); transform: scale3d(1.1, 1.1, 1); } 100% { -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); } } @-webkit-keyframes anim-2 { to { opacity: 0; -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); } } @keyframes anim-2 { to { opacity: 0; -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); } } .booklink-footer { display: none; } @media screen and (max-width: 1024px) { .kaerebalink-link1 a, .booklink-link2 a, .tomarebalink-link1 a { /* 購入ボタン */ width:calc(100% - 4px); -moz-border-radius:5px; -webkit-border-radius:5px; border-radius:5px; margin: 2px 0px; padding:10px 0px; } } @media screen and (max-width: 680px) { .booklink-box, .kaerebalink-box, .tomarebalink-box{padding:15px;} .booklink-image, .kaerebalink-image, .tomarebalink-image { width: 100%; min-width: initial; display: block; float: none; } .booklink-name > a, .kaerebalink-name > a, .tomarebalink-name > a{ font-size: 15px; font-weight: bold; } .booklink-name, .kaerebalink-name, .tomarebalink-name{margin-bottom:12px;} .booklink-powered-date, .kaerebalink-powered-date, .tomarebalink-powered-date{margin-top:5px;} }
以上です。ボタン部分の表現でとんでもなく長いCSSになってしまいました。
スマホでもアイテムが縦並び表示にならないバージョン
完成図
CSS
/*---------------------------------------------------- ヨメレバ・カエレバ・トマレバ 動きのあるボタンver2 ----------------------------------------------------*/ .booklink-box, .kaerebalink-box, .tomarebalink-box{ padding:25px; margin-bottom: 10px; border:double #CCC; overflow: hidden; font-size:small; } .booklink-image, .kaerebalink-image, .tomarebalink-image{ margin:0 15px 0 0; float:left; min-width: 160px; text-align: center; } .booklink-image img, .kaerebalink-image img, .tomarebalink-image img{ margin:0 auto; text-align:center; } .booklink-info, .kaerebalink-info, .tomarebalink-info{ margin:0; line-height:120%; overflow: hidden; } .booklink-name, .kaerebalink-name, .tomarebalink-name{ border-top:5px solid #ccc; margin-bottom:24px; padding-top:5px; line-height:1.5em; } .booklink-name a, .kaerebalink-name a, .tomarebalink-name a { font-weight: bold; text-decoration: none; } .booklink-powered-date, .kaerebalink-powered-date, .tomarebalink-powered-date{ font-size:8px; margin-top:10px; font-family:verdana; line-height:120%; border-top:1px solid #ccc; text-align:right; padding:2px; } .booklink-detail, .kaerebalink-detail, .tomarebalink-detail{font-size: 12px;} .booklink-powered-date, .kaerebalink-powered-date, .tomarebalink-powered-date{margin-bottom:15px;} .booklink-link2, .kaerebalink-link1, .tomarebalink-link1{margin-top:10px;} .kaerebalink-link1 a { /* カエレバ */ width: 30%; /* 横に並べたい項目が二つなら46% */ } .booklink-link2 a { /* ヨメレバ */ width: 30%; /* 横に並べたい項目が二つなら46% */ } .tomarebalink-link1 a { /* トマレバ */ width: 30%; /* 横に並べたい項目が二つなら46% */ } .kaerebalink-link1 a, .booklink-link2 a, .tomarebalink-link1 a { -moz-border-radius:5px; -webkit-border-radius:5px; border-radius:5px; display:inline-block; margin:5px 2px 0 0; padding:10px 1px; text-align:center; float:left; text-decoration:none; font-weight:800; font-size:12px; } .booklink-link2 a:active .kaerebalink-link1 a:active, .tomarebalink-link1 a:active { position: relative; top: 1px; } /* amazon */ .shoplinkamazon a { color: #FF9901 ; /* 文字の色 */ border: solid 1px #FF9901 ; /* ボーダー色 */ } .shoplinkamazon a:hover { background-color: #ff9901; /* カーソルを重ねた時の背景色 */ } /* 楽天 */ .shoplinkrakuten a { color: #c20004 ; /* 文字の色 */ border: solid 1px #c20004 ; /* ボーダー色 */ } .shoplinkrakuten a:hover { background-color: #c20004; /* カーソルを重ねた時の背景色 */ } /* kindle */ .shoplinkkindle a { color: #007dcd; /* 文字の色 */ border: solid 1px #007dcd ; /* ボーダー色 */ } .shoplinkkindle a:hover { background-color: #007dcd; /* カーソルを重ねた時の背景色 */ } /* 価格 */ .shoplinkkakakucom a { color: #314995; /* 文字の色 */ border: solid 1px #314995 ; /* ボーダー色 */ } .shoplinkkakakucom a:hover { background-color: #314995; /* カーソルを重ねた時の背景色 */ } /* kobo */ .shoplinkrakukobo a { color: #990000; /* 文字の色 */ border: solid 1px #990000 ; /* ボーダー色 */ } .shoplinkrakukobo a:hover { background-color: #990000; /* カーソルを重ねた時の背景色 */ } /* yahoo */ .shoplinkyahoo a { color: #7b0099; /* 文字の色 */ border: solid 1px #7b0099 ; /* ボーダー色 */ } .shoplinkyahoo a:hover { background-color: #7b0099; /* カーソルを重ねた時の背景色 */ } .shoplinkyahoo img { display: none; } .shoplinkyahoo a { font-size: 10px; } /* 7net */ .shoplinkseven a { color: #82c36f ; /* 文字の色 */ border: solid 1px #82c36f ; /* ボーダー色 */ } .shoplinkseven a:hover { background-color: #82c36f; /* カーソルを重ねた時の背景色 */ } /* jtb */ .shoplinkjtb a { color: #990000 ; /* 文字の色 */ border: solid 1px #990000 ; /* ボーダー色 */ } .shoplinkjtb a:hover { background-color: #990000; /* カーソルを重ねた時の背景色 */ } /* jalan */ .shoplinkjalan a { color: #FF9901 ; /* 文字の色 */ border: solid 1px #FF9901 ; /* ボーダー色 */ } .shoplinkjalan a:hover { background-color: #FF9901; /* カーソルを重ねた時の背景色 */ } .booklink-link2 a:hover, .kaerebalink-link1 a:hover, .tomarebalink-link1 a:hover{opacity: 0.6;} .booklink-link2 a:active, .kaerebalink-link1 a:active, .tomarebalink-link1 a:active{ position:relative; top:1px; } .shoplinkamazon a, .shoplinkrakuten a, .shoplinkkindle a, .shoplinkkakakucom a, .shoplinkrakukobo a, .shoplinkyahoo a, .shoplinkseven a, .shoplinkjtb a, .shoplinkjalan a { position: relative; -webkit-backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; -webkit-transition: background-color 0.3s, color 0.3s; transition: background-color 0.3s, color 0.3s; } .shoplinkamazon a:hover, .shoplinkrakuten a:hover, .shoplinkkindle a:hover, .shoplinkkakakucom a:hover, .shoplinkrakukobo a:hover, .shoplinkyahoo a:hover, .shoplinkseven a:hover, .shoplinkjtb a:hover, .shoplinkjalan a:hover { -webkit-transition: background-color 0.1s 0.3s, color 0.1s 0.3s; transition: background-color 0.1s 0.3s, color 0.1s 0.3s; color: #fff; /* カーソルを重ねた時の文字色 */ -webkit-animation: anim-1 0.3s forwards; animation: anim-1 0.3s forwards; } .shoplinkamazon a:focus, .shoplinkrakuten a:focus, .shoplinkkindle a:focus, .shoplinkkakakucom a:focus, .shoplinkrakukobo a:focus, .shoplinkyahoo a:focus, .shoplinkseven a:focus, .shoplinkjtb a:focus, .shoplinkjalan a:focus { outline: none; } .shoplinkamazon a::before, .shoplinkrakuten a::before, .shoplinkkindle a::before, .shoplinkkakakucom a::before, .shoplinkrakukobo a::before, .shoplinkyahoo a::before, .shoplinkseven a::before, .shoplinkjtb a::before, .shoplinkjalan a::before { content: ''; position: absolute; top: -10px; left: -10px; bottom: -10px; right: -10px; background: inherit; z-index: -1; opacity: 0.4; -webkit-transform: scale3d(0.8, 0.5, 1); transform: scale3d(0.8, 0.5, 1); } .shoplinkamazon a:hover::before, .shoplinkrakuten a:hover::before, .shoplinkkindle a:hover::before, .shoplinkkakakucom a:hover::before, .shoplinkrakukobo a:hover::before, .shoplinkyahoo a:hover::before, .shoplinkseven a:hover::before, .shoplinkjtb a:hover::before, .shoplinkjalan a:hover::before { -webkit-animation: anim-2 0.3s 0.3s forwards; animation: anim-2 0.3s 0.3s forwards; } @-webkit-keyframes anim-1 { 60% { -webkit-transform: scale3d(0.8, 0.8, 1); transform: scale3d(0.8, 0.8, 1); } 85% { -webkit-transform: scale3d(1.1, 1.1, 1); transform: scale3d(1.1, 1.1, 1); } 100% { -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); } } @keyframes anim-1 { 60% { -webkit-transform: scale3d(0.8, 0.8, 1); transform: scale3d(0.8, 0.8, 1); } 85% { -webkit-transform: scale3d(1.1, 1.1, 1); transform: scale3d(1.1, 1.1, 1); } 100% { -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); } } @-webkit-keyframes anim-2 { to { opacity: 0; -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); } } @keyframes anim-2 { to { opacity: 0; -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); } } .booklink-footer { display: none; } @media screen and (max-width: 1024px) { .kaerebalink-link1 a, .booklink-link2 a, .tomarebalink-link1 a { /* 購入ボタン */ width:calc(100% - 4px); -moz-border-radius:5px; -webkit-border-radius:5px; border-radius:5px; margin: 2px 0px; padding:10px 0px; } } @media screen and (max-width: 680px) { .booklink-box, .kaerebalink-box, .tomarebalink-box{padding:15px;} .booklink-image, .kaerebalink-image, .tomarebalink-image { width: 100px; min-width: initial; } .booklink-name > a, .kaerebalink-name > a, .tomarebalink-name > a{ font-size: 15px; font-weight: bold; } .booklink-name, .kaerebalink-name, .tomarebalink-name{margin-bottom:12px;} .booklink-powered-date, .kaerebalink-powered-date, .tomarebalink-powered-date{margin-top:5px;} }
スマートフォン用の設定
スマートフォンを用のページを設定している方は、proの方限定ですが以下の位置の方法でコードを貼り付けてください。 場所は「デザイン」→「カスタマイズ」→「スマートフォン」→「ヘッダ」→「タイトル下」です。
コードを貼りつける前には、下記のコードを事前にコピペしておいてください。
<style type="text/css"> /* ここの真下にCSSをペースト */ </style>
ここの真下にCSSをペースト、とかいてある部分にCSSをペーストしてください。<style>〜</style>
の間にCSSを挟み込む感じです。
以下は例ですよ
<style type="text/css"> /* ここの真下にCSSをペースト */ /*-------------------------------------- ヨメレバ・カエレバ・トマレバ --------------------------------------*/ .booklink-box, .kaerebalink-box, .tomarebalink-box { padding: 25px; margin-bottom: 10px; border: double #ccc; overflow: hidden; font-size: small; border-radius: 3px; } 中略 /* スマホ表示で購入ボタンを横長にする。 不要なら各々を削除 */ .kaerebalink-link1 a, .booklink-link2 a, .tomarebalink-link1 a { /* 購入ボタン */ width: calc(100% - 4px); -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; margin: 2px 0px; padding: 10px 0px; } } </style>
こんな感じです。
カスタマイズの仕方を少し解説
カエレバで設定されているリンクの数はそれぞれ違うはずなので、
各環境にあった設定に変えられる事をお勧めします。
例えば、「ヨメレバ」で、当サイトと同じように、amazon、kindle、楽天ブックス、7netと並べようと思うと、ヨメレバのcssの中から以下の部分を
width: 30%; /* 横に並べたい項目が二つなら46% */
width: 46%; /* 横に並べたい項目が二つなら46% */
このように調節する必要が出てきます。
初期の状態ではどれもボタンが三つ横に並ぶようにしています。
それと、スマホでボタンを縦に並べたく無い場合は
/* スマホ表示で購入ボタンを横長にする。 不要なら各々を削除 */ .kaerebalink-link1 a, .booklink-link2 a, .tomarebalink-link1 a { /* カエレバ購入ボタン */ width: calc(100% - 4px); -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; margin: 2px 0px; padding: 10px 0px; }
最初の行の```.kaerebalink-link1 a, .booklink-link2 a, .tomarebalink-link1 a```を削除して調整します。
.kaerebalink-link1 a(カエレバ)
.booklink-link2 a(ヨメレバ)
.tomarebalink-link1 a(トマレバ)
これでボタンが横に並ぶようになります。
例えば、ヨメレバ、トマレバの表示をボタン横並びにしたいのであれば、```, .booklink-link2 a, .tomarebalink-link1 a```までを消します。
/* スマホ表示で購入ボタンを横長にする。 不要なら各々を削除 */ .kaerebalink-link1 a { /* カエレバ購入ボタン */ width: calc(100% - 4px); -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; margin: 2px 0px; padding: 10px 0px; }
コードはこんな感じに
コードの部分が大部分を占めていたとは言え、こんなに長いエントリーは初めてです・・・
ではでは、また次の記事で