<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:blogChannel="http://backend.userland.com/blogChannelModule" >
  <channel>
  <title>note</title>
  <link>http://spoontravel.blog.shinobi.jp/</link>
  <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://spoontravel.blog.shinobi.jp/RSS/" />
  <description>仕事のメモ帳。</description>
  <lastBuildDate>Mon, 19 Oct 2020 02:59:39 GMT</lastBuildDate>
  <language>ja</language>
  <copyright>© Ninja Tools Inc.</copyright>
  <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" />

    <item>
    <title>photoshop cc で 拡大縮小比率をShiftキーで調整する場合の設定</title>
    <description>
    <![CDATA[<div><a title="">https://community.adobe.com/t5/Photoshop/Photoshop-20-x-2019-%E3%81%AE-%E5%A4%89%E5%BD%A2-%E4%BB%95%E6%A7%98%E5%A4%89%E6%9B%B4%E3%81%AB%E3%81%A4%E3%81%84%E3%81%A6/td-p/4788562?profile.language=ja&amp;pageRefresh=true</a></div>
<div></div>
<div>Photoshopを起動し画面上部のメニューより以下項目を選択</div>
<div>1.Windows：編集＞環境設定＞一般</div>
<div>Mac：PhotoshopCC＞環境設定＞一般</div>
<div>2.「従来方式の自由変形を使用」にチェックをつけて、右上の「OK」をクリック</div>]]>
    </description>
    <category>PS</category>
    <link>http://spoontravel.blog.shinobi.jp/_ps/photoshop%20cc%20%E3%81%A7%20%E6%8B%A1%E5%A4%A7%E7%B8%AE%E5%B0%8F%E6%AF%94%E7%8E%87%E3%82%92shif</link>
    <pubDate>Tue, 12 Nov 2019 06:32:45 GMT</pubDate>
    <guid isPermaLink="false">spoontravel.blog.shinobi.jp://entry/273</guid>
  </item>
    <item>
    <title>slick.jsを使って左右の画像をチラ見せするメイン画像スライダーのサンプル</title>
    <description>
    <![CDATA[<a href="https://peacepopo.net/blog-entry-238.html">https://peacepopo.net/blog-entry-238.html<br />
</a> <br />
centerPadding: '10%'　がキモっぽい。<br />
<br />

<blockquote>
<div>&lt;link rel="stylesheet" type="text/css" href="slick.css"&gt;</div>
<div>&lt;link rel="stylesheet" type="text/css" href="slick-theme.css"&gt;</div>
<div>&lt;script type="text/javascript" src="jquery.min.js"&nbsp; &gt;&lt;/script&gt;</div>
<div>&lt;script type="text/javascript" src="slick.min.js"&gt;&lt;/script&gt;</div>
<div>&nbsp;</div>
<div>&lt;script&gt;</div>
<div>$("document").ready(function(){</div>
<div>&nbsp; $('.mypattern').slick({</div>
<div>&nbsp; &nbsp; autoplay: true,</div>
<div>&nbsp; &nbsp; autoplaySpeed: 2500,</div>
<div>&nbsp; &nbsp; speed: 800,</div>
<div>&nbsp; &nbsp; dots: true,</div>
<div>&nbsp; &nbsp; arrows: false,</div>
<div>&nbsp; &nbsp; centerMode: true,</div>
<div>&nbsp; &nbsp; centerPadding: '10%'</div>
<div>&nbsp; });</div>
<div>});&nbsp;</div>
<div>&lt;/script&gt;</div>
<div>&nbsp;</div>
<div>&lt;style&gt;</div>
<div>&nbsp; * {</div>
<div>&nbsp; &nbsp; margin: 0;</div>
<div>&nbsp; &nbsp; padding: 0;</div>
<div>&nbsp; }</div>
<div>&nbsp; .slider {</div>
<div>&nbsp; &nbsp; width: 90%;</div>
<div>&nbsp; &nbsp; margin: 0 auto 80px;</div>
<div>&nbsp; }</div>
<div>&nbsp; .slick-slide img {</div>
<div>&nbsp; &nbsp; width: 100%;</div>
<div>&nbsp; &nbsp; height: auto;</div>
<div>&nbsp; }</div>
<div>&nbsp; .mypattern{</div>
<div>&nbsp; &nbsp; width: 100%;</div>
<div>&nbsp; }</div>
<div>&nbsp; .mypattern .slick-slide{</div>
<div>&nbsp; &nbsp; margin: 5px;</div>
<div>&nbsp; }</div>
<div>&lt;/style&gt;</div>
<div>&nbsp;</div>
<div>&lt;div class="content"&gt;</div>
<div>&nbsp; &lt;div class="slider mypattern"&gt;</div>
<div>&nbsp; &nbsp; &lt;div&gt;&lt;a href="#"&gt;&lt;img src="画像URL"&gt;&lt;/a&gt;&lt;/div&gt;</div>
<div>&nbsp; &nbsp; &lt;div&gt;&lt;a href="#"&gt;&lt;img src="画像URL"&gt;&lt;/a&gt;&lt;/div&gt;</div>
<div>&nbsp; &nbsp; &lt;div&gt;&lt;a href="#"&gt;&lt;img src="画像URL"&gt;&lt;/a&gt;&lt;/div&gt;</div>
<div>&nbsp; &nbsp; &lt;div&gt;&lt;a href="#"&gt;&lt;img src="画像URL"&gt;&lt;/a&gt;&lt;/div&gt;</div>
<div>&nbsp; &nbsp; &lt;div&gt;&lt;a href="#"&gt;&lt;img src="画像URL"&gt;&lt;/a&gt;&lt;/div&gt;</div>
<div>&nbsp; &nbsp; &lt;div&gt;&lt;a href="#"&gt;&lt;img src="画像URL"&gt;&lt;/a&gt;&lt;/div&gt;</div>
<div>&nbsp; &nbsp; &lt;div&gt;&lt;a href="#"&gt;&lt;img src="画像URL"&gt;&lt;/a&gt;&lt;/div&gt;</div>
<div>&nbsp; &lt;/div&gt;</div>
<div>&lt;/div&gt;</div>
</blockquote>]]>
    </description>
    <category>HTML,css</category>
    <link>http://spoontravel.blog.shinobi.jp/_htmlcss/slick.js%E3%82%92%E4%BD%BF%E3%81%A3%E3%81%A6%E5%B7%A6%E5%8F%B3%E3%81%AE%E7%94%BB%E5%83%8F%E3%82%92%E3%83%81%E3%83%A9%E8%A6%8B%E3%81%9B%E3%81%99%E3%82%8B%E3%83%A1%E3%82%A4</link>
    <pubDate>Tue, 12 Nov 2019 06:31:26 GMT</pubDate>
    <guid isPermaLink="false">spoontravel.blog.shinobi.jp://entry/272</guid>
  </item>
    <item>
    <title>テキスト 一行での両端揃えの方法</title>
    <description>
    <![CDATA[<div>クラス&rdquo;text-justify&rdquo;をつけるとテキストが両端揃えになる。<br />
（bootstrap4でデフォルト設定されている。）<br />
<br />
例<br />
&lt;p class="text-justify"&gt;テキストを両端揃えする&lt;/p&gt;</div>
<div><br />
ベタコードで書くと以下のとおり。<br />
text-justify{</div>
<div>&nbsp; text-align: justify;</div>
<div>&nbsp; text-justify: inter-ideograph;<br />
}</div>
<br />
text-justify: inter-ideograph;については以下のサイトで説明あり。<br />
<br />
★ブラウザ別、一行での両端揃えの方法<br />
https://qiita.com/nabe_kurage/items/ddd1659f1798217d198f<br />
<br />

<blockquote>
<div>日本語のように空白文字で区切らない言語はtext-align(-last)だけだと均等にならない。</div>
<div>text-justify:inter-ideographをつける必要がある。</div>
<div>text-justifyはIEが独自での採用したもので、inter-ideograph を指定すれば日本語・中国語・韓国語の文字間隔を調整して両端揃えにしてくれるそうです。</div>
</blockquote>]]>
    </description>
    <category>HTML,css</category>
    <link>http://spoontravel.blog.shinobi.jp/_htmlcss/%E3%83%86%E3%82%AD%E3%82%B9%E3%83%88%20%E4%B8%80%E8%A1%8C%E3%81%A7%E3%81%AE%E4%B8%A1%E7%AB%AF%E6%8F%83%E3%81%88%E3%81%AE%E6%96%B9%E6%B3%95</link>
    <pubDate>Mon, 28 Oct 2019 02:55:54 GMT</pubDate>
    <guid isPermaLink="false">spoontravel.blog.shinobi.jp://entry/271</guid>
  </item>
    <item>
    <title>cssで三角矢印を中央に置く</title>
    <description>
    <![CDATA[CSSでヘッダーの真ん中に吹き出しっぽい三角をつけてみた https://wp.myafi.net/balloon/]]>
    </description>
    <category>HTML,css</category>
    <link>http://spoontravel.blog.shinobi.jp/_htmlcss/css%E3%81%A7%E4%B8%89%E8%A7%92%E7%9F%A2%E5%8D%B0%E3%82%92%E4%B8%AD%E5%A4%AE%E3%81%AB%E7%BD%AE%E3%81%8F</link>
    <pubDate>Mon, 28 Oct 2019 02:28:13 GMT</pubDate>
    <guid isPermaLink="false">spoontravel.blog.shinobi.jp://entry/270</guid>
  </item>
    <item>
    <title>PHPでのリンク先に、変数の中の文字列を渡したい。</title>
    <description>
    <![CDATA[<div>▼該当のHTMLファイル<br />
<br />

<div>&lt;?php //大学入試対策について</div>
<div>$file=大学入試対策;</div>
<div>?&gt;<br />
<br />
・<br />
・<br />
・<br />
<br />
&lt;?php include DOC_ROOT.'/_partials/global/conversion/generic_e.php'; ?&gt;<br />
<br />
<br />
▼インクルードするCVファイル（ここでは、generic_e.php）<br />
<br />
</div>
&lt;?php</div>
<div>&nbsp; &nbsp; &nbsp; print '&lt;a class="btn btn-axis btn-conversion trial" href="/trial/?title=' . $file . '"&gt;';</div>
<div>?&gt;<br />
&lt;i class="fas fa-chalkboard-teacher mr-2 mr-pc-2 lg"&gt;&lt;/i&gt;無料体験授業を申し込む&lt;/a&gt;</div>
<br />
<br />
参考にしたサイト<br />
<a href="https://teratail.com/questions/57239">https://teratail.com/questions/57239</a>]]>
    </description>
    <category>php</category>
    <link>http://spoontravel.blog.shinobi.jp/php/php%E3%81%A7-a%20href-%E2%80%9D%E2%80%9D-%E3%81%AE%E3%83%AA%E3%83%B3%E3%82%AF%E5%85%88%E3%81%AB%E3%80%81%E5%A4%89%E6%95%B0%E3%81%AE%E4%B8%AD</link>
    <pubDate>Tue, 25 Jun 2019 02:53:49 GMT</pubDate>
    <guid isPermaLink="false">spoontravel.blog.shinobi.jp://entry/269</guid>
  </item>
    <item>
    <title>一流クリエイターが作った無料デザイン素材38選</title>
    <description>
    <![CDATA[https://saruwakakun.com/design/tips/dribbble#section4]]>
    </description>
    <category>PS</category>
    <link>http://spoontravel.blog.shinobi.jp/_ps/%E4%B8%80%E6%B5%81%E3%82%AF%E3%83%AA%E3%82%A8%E3%82%A4%E3%82%BF%E3%83%BC%E3%81%8C%E4%BD%9C%E3%81%A3%E3%81%9F%E7%84%A1%E6%96%99%E3%83%87%E3%82%B6%E3%82%A4%E3%83%B3%E7%B4%A0%E6%9D%9038%E9%81%B8</link>
    <pubDate>Fri, 05 Oct 2018 15:42:27 GMT</pubDate>
    <guid isPermaLink="false">spoontravel.blog.shinobi.jp://entry/268</guid>
  </item>
    <item>
    <title>[Illustrator] アクション設定</title>
    <description>
    <![CDATA[https://creatorhyp.com/tips/illustrator-action/]]>
    </description>
    <category>Illustrator</category>
    <link>http://spoontravel.blog.shinobi.jp/illustrator/-illustrator-%20%E3%82%A2%E3%82%AF%E3%82%B7%E3%83%A7%E3%83%B3%E8%A8%AD%E5%AE%9A</link>
    <pubDate>Tue, 02 Oct 2018 04:05:57 GMT</pubDate>
    <guid isPermaLink="false">spoontravel.blog.shinobi.jp://entry/267</guid>
  </item>
    <item>
    <title>google スプレッドシートで特定の文字が入力された行に色を付ける</title>
    <description>
    <![CDATA[https://qiita.com/ori3/items/b00a66041ceddd3c83a2]]>
    </description>
    <category>ツール</category>
    <link>http://spoontravel.blog.shinobi.jp/tool/google%20%E3%82%B9%E3%83%97%E3%83%AC%E3%83%83%E3%83%89%E3%82%B7%E3%83%BC%E3%83%88%E3%81%A7%E7%89%B9%E5%AE%9A%E3%81%AE%E6%96%87%E5%AD%97%E3%81%8C%E5%85%A5%E5%8A%9B%E3%81%95%E3%82%8C</link>
    <pubDate>Wed, 05 Sep 2018 23:30:31 GMT</pubDate>
    <guid isPermaLink="false">spoontravel.blog.shinobi.jp://entry/266</guid>
  </item>
    <item>
    <title>シェイプの結合・中マドが便利</title>
    <description>
    <![CDATA[【Photoshop CS6】シェイプの結合・中マドが便利<br />
http://www.ar-ch.org/mt/archives/2012/09/photoshop-shape.html<br />
<br />
二つのレイヤーのシェイプを結合させたいとき<br />
2つのレイヤーを選択して、「Ctrl+E」でレイヤーを結合]]>
    </description>
    <category>PS</category>
    <link>http://spoontravel.blog.shinobi.jp/_ps/%E3%82%B7%E3%82%A7%E3%82%A4%E3%83%97%E3%81%AE%E7%B5%90%E5%90%88%E3%83%BB%E4%B8%AD%E3%83%9E%E3%83%89%E3%81%8C%E4%BE%BF%E5%88%A9</link>
    <pubDate>Thu, 19 Jul 2018 01:03:46 GMT</pubDate>
    <guid isPermaLink="false">spoontravel.blog.shinobi.jp://entry/265</guid>
  </item>
    <item>
    <title>特色をプロセスカラーに変更する方法</title>
    <description>
    <![CDATA[特色(スポットカラー)について｜Illustrator<br />
<br />
https://www.ddc.co.jp/tokupre/data-guide/illustrator-spot-color.html<br />
<br />

<blockquote><span style="color: #333333; font-family: メイリオ, HiraMaruPro-W4, Meiryo, 'ヒラギノ角ゴ Pro W3', Osaka;">スウォッチパネル（パレット）にて特色のカラーを選択し、スウォッチパネルのメニューから「スウォッチオプション」を選択します。<br />
<br />
</span><span style="color: #333333; font-family: メイリオ, HiraMaruPro-W4, Meiryo, 'ヒラギノ角ゴ Pro W3', Osaka;">スウォッチオプションの画面が開いたら、カラータイプが「特色」になっていることを確認します。この「特色」と書いてある部分をクリックします。<br />
<br />
</span>
<p style="box-sizing: border-box; margin: 0px 0px 0.5em; word-wrap: break-word; overflow-wrap: break-word; color: #333333; font-family: メイリオ, HiraMaruPro-W4, Meiryo, 'ヒラギノ角ゴ Pro W3', Osaka;">カラータイプを「プロセスカラー」に変更します。</p>
<p style="box-sizing: border-box; margin: 0px 0px 0.5em; word-wrap: break-word; overflow-wrap: break-word; color: #333333; font-family: メイリオ, HiraMaruPro-W4, Meiryo, 'ヒラギノ角ゴ Pro W3', Osaka;">カラータイプの下にある「グローバル」のチェックも外します。</p>
</blockquote>]]>
    </description>
    <category>Illustrator</category>
    <link>http://spoontravel.blog.shinobi.jp/illustrator/%E7%89%B9%E8%89%B2%E3%82%92%E3%83%97%E3%83%AD%E3%82%BB%E3%82%B9%E3%82%AB%E3%83%A9%E3%83%BC%E3%81%AB%E5%A4%89%E6%9B%B4%E3%81%99%E3%82%8B%E6%96%B9%E6%B3%95</link>
    <pubDate>Wed, 18 Jul 2018 00:18:06 GMT</pubDate>
    <guid isPermaLink="false">spoontravel.blog.shinobi.jp://entry/264</guid>
  </item>

    </channel>
</rss>