<?xml version="1.0" encoding="UTF-8" ?><rdf:RDF 
  xmlns="http://purl.org/rss/1.0/"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:atom="http://www.w3.org/2005/Atom"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xml:lang="ja">
  <channel rdf:about="http://w.atwiki.jp/myrenshu/">
    <title>myrenshu @ ウィキ</title>
    <link>http://w.atwiki.jp/myrenshu/</link>
    <atom:link href="https://w.atwiki.jp/myrenshu/rss10.xml" rel="self" type="application/rss+xml" />
    <atom:link rel="hub" href="https://pubsubhubbub.appspot.com" />
    <description>myrenshu @ ウィキ</description>

    <dc:language>ja</dc:language>
    <dc:date>2022-02-11T11:05:35+09:00</dc:date>
    <utime>1644545135</utime>

    <items>
      <rdf:Seq>
                <rdf:li rdf:resource="https://w.atwiki.jp/myrenshu/pages/58.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/myrenshu/pages/57.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/myrenshu/pages/56.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/myrenshu/pages/55.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/myrenshu/pages/54.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/myrenshu/pages/53.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/myrenshu/pages/52.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/myrenshu/pages/51.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/myrenshu/pages/50.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/myrenshu/pages/49.html" />
              </rdf:Seq>
    </items>
	
		
    
  </channel>
    <item rdf:about="https://w.atwiki.jp/myrenshu/pages/58.html">
    <title>javascript/keepedopenclose</title>
    <link>https://w.atwiki.jp/myrenshu/pages/58.html</link>
    <description>
      #js(){{
&lt;script type=&quot;text/javascript&quot;&gt;
var KeepedOpenClose = {
	Key : &#039;koc_&#039;,
	GetID : function(elem) {
		var id = elem.attr(&#039;id&#039;);
		if (id.indexOf(this.Key) == -1) {
			return null;
		}
		if (/pages\/(\d+)\.html/.test(location.toString())) {
			return id + &#039;@&#039; + RegExp.$1;
		}
		return null;
	},
	Expand : function(elem) {
		var id = this.GetID(elem);
		if (id != null) {
			elem.children(&#039;*:not(:first)&#039;).show();
			localStorage.removeItem(id);
		}
	},
	Collapse : function(elem) {
		var id = this.GetID(elem);
		if (id != null) {
			elem.children(&#039;*:not(:first)&#039;).hide();
			localStorage[id] = &#039;1&#039;;
		}
	},
	Toggle : function(elem) {
		var parent = elem.parent();
		if (parent.children(&#039;*:not(:first)&#039;).css(&#039;display&#039;) == &#039;none&#039;)
			this.Expand(parent);
		else
			this.Collapse(parent);
	},
	Exist : function(elem) {
		return localStorage[this.GetID(elem)];
	},
	Init : function() {
		var self = this;
		$(&#039;div[id^=&quot;koc_&quot;]&#039;).each(function() {
			var butt    </description>
    <dc:date>2022-02-11T11:05:35+09:00</dc:date>
    <utime>1644545135</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/myrenshu/pages/57.html">
    <title>javascript/サーヴァント経験値計算</title>
    <link>https://w.atwiki.jp/myrenshu/pages/57.html</link>
    <description>
      #javascript(){{{{{
&lt;style&gt;
#svExp tbody tr td:nth-of-type(1){text-align: center;}
#svExp input[type=text]{text-align: right;}
&lt;/style&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;

function calcqp(sr, lv){
	switch (sr) {
		case 11: return 70+30*lv;
		case 21: return 105+45*lv;
		case 31: return 140+60*lv;
		case 41: return 280+120*lv;
		case 51: return 420+180*lv;
		case 10: return 42+18*lv;
		case 20: return 63+27*lv;
		case 30: return 84+36*lv;
		case 40: return 168+72*lv;
		case 50: return 252+108*lv;
		default: return 0;
	}
}

function toComma(num)
{
	return parseInt(num / 1000) == 0 ? num % 1000 : toComma(parseInt(num / 1000)) + &#039;,&#039; + (&#039;000&#039; + (num % 1000)).slice(-3);
}

function func(){
	// 数値を取得
	var now  = parseFloat($(&#039;#svExp [name=&quot;nowLv&quot;]&#039;).val());
	var goal = parseFloat($(&#039;#svExp [name=&quot;goaLv&quot;]&#039;).val());
	
	// 現在レベルが目標レベルより高い場合は、1Lv分だけ計算
	if(    </description>
    <dc:date>2021-08-05T12:04:57+09:00</dc:date>
    <utime>1628132697</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/myrenshu/pages/56.html">
    <title>javascript/npsort</title>
    <link>https://w.atwiki.jp/myrenshu/pages/56.html</link>
    <description>
      #html2(){{{{{
&lt;div style=&quot;display: none;&quot; id=&quot;npsort-inlinestyles&quot;&gt;&lt;!--
.npsort thead,
.npsort_cmd thead {
  background: #ccc;
  font-weight: bold;
}

.npsort_cmd tbody tr:nth-child(odd) {
  background: #f0f0f0;
}

.headbtn {
  cursor : pointer;
}

.headbtn:hover {
  background : #ffd700;
}

.abq.order_0,
.abq.order_1 {
  background : #def;
}
.abq.order_2,
.abq.order_3 {
  background : #fcc;
}
.abq.order_4,
.abq.order_5 {
  background : #cfb;
}

.order_0:after,
.order_2:after,
.order_4:after {
  content: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7);
}
.order_1:after,
.order_3:after,
.order_5:after {
  content: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7);
}

.ex[class*=&quot;order_&quot;],
.noble[class*=&quot;order_&quot;],
.name[class*=&quot;order_&quot;],
.class[class*=&quot;order_&quot;] {
  background : #fff;
}

.npsort-checkbox-label,
.npsort-styles input[type=    </description>
    <dc:date>2021-06-26T08:47:03+09:00</dc:date>
    <utime>1624664823</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/myrenshu/pages/55.html">
    <title>javascript/sortabletable</title>
    <link>https://w.atwiki.jp/myrenshu/pages/55.html</link>
    <description>
      #javascript(){{{
&lt;script defer charset=&quot;utf-8&quot; type=&quot;text/javascript&quot; src=&quot;https://erectorops.github.io/jsup/filterabletable.js?ver=20220331&quot;&gt;&lt;/script&gt;
&lt;script defer charset=&quot;utf-8&quot; type=&quot;text/javascript&quot; src=&quot;https://erectorops.github.io/jsup/sortabletable.js?ver=20220331&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
document.addEventListener(&#039;DOMContentLoaded&#039;, function() {
  
  let sortabletable_main = function(table_id, table_html, sortabletableso, filter, multi) {
    table_html.attr(&#039;id&#039;, table_id);
    let tblElem = table_html[0];
    if (!multi) {
      const merged = Array.prototype.slice.call(tblElem.tBodies[0].rows)
        .flatMap(x =&gt; Array.prototype.slice.call(x.cells))
        .some(x =&gt; x.colSpan &gt; 1 || x.rowSpan &gt; 1);
      if (merged) {
        multi = true;
      }
    }
    let st = new SortableTable(tblElem, sortabletableso, multi);
    if (filter) {
      let ft = new FilterableTable(tblElem, sortabletableso, multi);
    }
  };

  // parse &#039;So    </description>
    <dc:date>2022-03-31T21:24:27+09:00</dc:date>
    <utime>1648729467</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/myrenshu/pages/54.html">
    <title>Gsheetテスト</title>
    <link>https://w.atwiki.jp/myrenshu/pages/54.html</link>
    <description>
      #googlespreadsheets3(https://docs.google.com/spreadsheets/d/e/2PACX-1vQmKacTH4mI_ZtG-SfkmbdQCq6xCNmCGv2_T4vi6DyKBw0U-1_bQD2qt8C9jcbiGA/pubhtml?widget=true&amp;amp;headers=false){500,500}    </description>
    <dc:date>2020-10-18T04:36:40+09:00</dc:date>
    <utime>1602963400</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/myrenshu/pages/53.html">
    <title>nplist</title>
    <link>https://w.atwiki.jp/myrenshu/pages/53.html</link>
    <description>
      #html2(){{{{{
&lt;div style=&quot;display: none;&quot; id=&quot;npsort-inlinestyles&quot;&gt;&lt;!--
.npsort thead,
.npsort_cmd thead {
  background: #ccc;
  font-weight: bold;
}

.npsort_cmd tbody tr:nth-child(odd) {
  background: #f0f0f0;
}

.headbtn {
  cursor : pointer;
}

.headbtn:hover {
  background : #ffd700;
}

.abq.order_0,
.abq.order_1 {
  background : #def;
}
.abq.order_2,
.abq.order_3 {
  background : #fcc;
}
.abq.order_4,
.abq.order_5 {
  background : #cfb;
}

.order_0:after,
.order_2:after,
.order_4:after {
  content: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7);
}
.order_1:after,
.order_3:after,
.order_5:after {
  content: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7);
}

.ex[class*=&quot;order_&quot;],
.noble[class*=&quot;order_&quot;],
.name[class*=&quot;order_&quot;],
.class[class*=&quot;order_&quot;] {
  background : #fff;
}

.npsort-checkbox-label,
.npsort-styles input[type=    </description>
    <dc:date>2020-09-23T06:42:07+09:00</dc:date>
    <utime>1600810927</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/myrenshu/pages/52.html">
    <title>javascript/makeiframe</title>
    <link>https://w.atwiki.jp/myrenshu/pages/52.html</link>
    <description>
      #js(){{{
&lt;script type=&quot;text/javascript&quot;&gt;
$(function(){
$(&#039;.miframe&#039;).each(function() {
  var prm = $.map($(this).text().split(&#039;,&#039;), $.trim);
  if ($(this).find(&#039;iframe&#039;).length &gt; 0) {
    return true;
  }
  if (!prm[0]) {
    $(this).css(&#039;color&#039;, &#039;red&#039;).text(&#039;[makeiframe]引数のURLがありません&#039;);
    return true;
  }
  $(this).empty();
  $(&#039;&lt;iframe&gt;&#039;).attr({
   &#039;src&#039;: prm[0]
  }).css({
   &#039;width&#039;: &#039;100%&#039;,
   &#039;height&#039;: &#039;950px&#039;,
   &#039;border&#039;: &#039;0&#039;,
   &#039;overflow&#039;: &#039;auto&#039;,
   &#039;margin&#039;: &#039;0&#039;,
   &#039;padding&#039;: &#039;0&#039;
  }).text(&#039;(IFRAME 機能を有効にしてください)&#039;).appendTo(this);
});
});
&lt;/script&gt;
}}}    </description>
    <dc:date>2018-09-21T12:10:51+09:00</dc:date>
    <utime>1537499451</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/myrenshu/pages/51.html">
    <title>金時</title>
    <link>https://w.atwiki.jp/myrenshu/pages/51.html</link>
    <description>
      #include(javascript/makeiframe)
#divclass(miframe){https://ss1.xrea.com/fgoc.s1006.xrea.com/servant.php?id=%E6%B2%96%E7%94%B0%E7%B7%8F%E5%8F%B8}

#co(){{{
&lt;iframe width=&quot;100%&quot; height=&quot;950px&quot; src=&quot;https://lolipop-pazdra.ssl-lolipop.jp/free.php&quot;&gt;&lt;/iframe&gt;
&lt;!--
&lt;object type=&quot;text/html&quot; data=&quot;https://lolipop-pazdra.ssl-lolipop.jp/free.php&quot; width=&quot;100%&quot; height=&quot;950px&quot; style=&quot;overflow:auto;&quot;&gt;&lt;/object&gt;
--&gt;
}}}    </description>
    <dc:date>2018-09-21T12:13:54+09:00</dc:date>
    <utime>1537499634</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/myrenshu/pages/50.html">
    <title>サーヴァント一覧２</title>
    <link>https://w.atwiki.jp/myrenshu/pages/50.html</link>
    <description>
      *NP獲得効率
#region
|BGCOLOR(#CCFFCC):COLOR(#000000):CENTER:名前|BGCOLOR(#CCFFCC):COLOR(#000000):CENTER:スキル使用|BGCOLOR(#CCFFCC):COLOR(#000000):CENTER:バフ＋&amp;br()パッシブ|BGCOLOR(#CCFFCC):COLOR(#000000):CENTER:クラス|BGCOLOR(#CCFFCC):COLOR(#000000):CENTER:Card&amp;br()構成|BGCOLOR(#CCFFCC):COLOR(#000000):CENTER:Hit|BGCOLOR(#CCFFCC):COLOR(#000000):CENTER:1st|&gt;|&gt;|BGCOLOR(#CCFFCC):COLOR(#000000):CENTER:1st ARTS|&gt;|&gt;|BGCOLOR(#CCFFCC):COLOR(#000000):CENTER:1st 他|BGCOLOR(#CCFFCC):COLOR(#000000):CENTER:宝具＋&amp;br()ﾘﾁｬｰｼﾞ|BGCOLOR(#CCFFCC):COLOR(#000000):CENTER:パッシブ|h
|~|~|~|~|~|~|~|BGCOLOR(#CCFFCC):COLOR(#000000):CENTER:2nd|BGCOLOR(#CCFFCC):COLOR(#000000):CENTER:3rd|BGCOLOR(#CCFFCC):COLOR(#000000):CENTER:Ex|BGCOLOR(#CCFFCC):COLOR(#000000):CENTER:2nd|BGCOLOR(#CCFFCC):COLOR(#000000):CENTER:3rd|BGCOLOR(#CCFFCC):COLOR(#000000):CENTER:Ex|~|~|h
|&amp;font(,90%){[[マシュ・キリエライト]]}| - ||盾4|BGCOLOR(#DDEEFF):AA|BGCOLOR(#DDEEFF):2|BGCOLOR(#DDEEFF):6.72|BGCOLOR(#DDEEFF):9.24|BGCOLOR(#DDEEFF):11.76|BGCOLOR(#EFEFEF):5.04|BGCOLOR(#DDEEFF):    </description>
    <dc:date>2018-03-05T09:52:18+09:00</dc:date>
    <utime>1520211138</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/myrenshu/pages/49.html">
    <title>レコード数が大量な表のレイアウト/PCで閲覧時</title>
    <link>https://w.atwiki.jp/myrenshu/pages/49.html</link>
    <description>
      #js(){{{{{
&lt;script&gt;&lt;/script&gt;
&lt;style&gt;
.browser-scroll {
white-space: nowrap;
overflow: visible!important;
}
.table-scroll { white-space: nowrap; }
&lt;/style&gt;
}}}}}
#html2(){{{{{
&lt;h4&gt;テーブルのスクロールバー&lt;/h4&gt;
&lt;table class=&quot;table-scroll&quot;&gt;
&lt;tr&gt;&lt;td&gt;ああああああああ&lt;/td&gt;&lt;td&gt;ああああああああ&lt;/td&gt;&lt;td&gt;ああああああああ&lt;/td&gt;&lt;td&gt;ああああああああ&lt;/td&gt;&lt;td&gt;ああああああああ&lt;/td&gt;&lt;td&gt;ああああああああ&lt;/td&gt;&lt;td&gt;ああああああああ&lt;/td&gt;&lt;td&gt;ああああああああ&lt;/td&gt;&lt;td&gt;ああああああああ&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;
&lt;h4&gt;ブラウザのスクロールバーを使用するテーブル&lt;/h4&gt;
&lt;table class=&quot;browser-scroll&quot;&gt;
&lt;tr&gt;&lt;td&gt;ああああああああ&lt;/td&gt;&lt;td&gt;ああああああああ&lt;/td&gt;&lt;td&gt;ああああああああ&lt;/td&gt;&lt;td&gt;ああああああああ&lt;/td&gt;&lt;td&gt;ああああああああ&lt;/td&gt;&lt;td&gt;ああああああああ&lt;/td&gt;&lt;td&gt;ああああああああ&lt;/td&gt;&lt;td&gt;ああああああああ&lt;/td&gt;&lt;td&gt;ああああああああ&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;
}}}}}    </description>
    <dc:date>2018-02-23T16:40:26+09:00</dc:date>
    <utime>1519371626</utime>
  </item>
  </rdf:RDF>
