先日、Google Drive for Desktop(Google driveをローカルPCにマウントできるやつ、「G:\」みたいなやつができるやつ)を使っていて、ふとバックアップを取ろうとGドライブのフォルダまるごと別のローカルフォルダに移そうとしたところ、「無効なMS-DOSファンクションです」とでて移動できませんでした。
User Mstroeck on en.wikipedia – Originally from en.wikipedia; description page is (was) here 23:30, 1 February 2006 Mstroeck 2024×1846 (2,043,648 bytes) (A diagram showing the types of carbon nanotubes. (Created by Michael Ströck (mstroeck) on February 1, 2006. Released under the GFDL). The (n,m) nanotube naming scheme can be thought of as a vector (Ch) in an infinite graphene sheet that describes how to) 22:49, 1 February 2006 Mstroeck 1986×1756 (2,027,400 bytes) (A diagram showing the types of [[:en:carbon nanotubes]]. (Created by Michael Ströck (mstroeck) on February 1, 2006. Released under the GFDL). The (n,m) nanotube naming scheme can be thought of as a vector (Ch) in an infinite graphene sheet that describes ho) 22:40, 1 February 2006 Mstroeck 1986×1756 (1,989,910 bytes) (A diagram showing the types of carbon nanotubes. (Created by Michael Ströck (mstroeck) on February 1, 2006. Released under the GFDL). The (n,m) nanotube naming scheme can be thought of as a vector (Ch) in an infinite graphene sheet that describes how to) Version of 22:51, 1 July 2007 uploaded on behalf of en:User:Ma Baker. Lucasbfr 22:56, 1 July 2007 (UTC), CC 表示-継承 3.0, リンクによる
function setcolor(classname) {
var rank = $(classname);
var arr = [];
$.each(rank, function(_, v) {
var num = parseFloat($(v).text());
if (num) {
arr.push(num);
}
});
// 一番大きい
var first = Math.max.apply(Math, arr);
// 一番大きいのを配列から削除
arr = arr.filter(function(x) {
return x != first
});
// 2番目に大きい
var second = Math.max.apply(Math, arr);
// 2番大きいのを配列から削除
arr = arr.filter(function(x) {
return x != second
});
// 3番目に大きい
var third = Math.max.apply(Math, arr);
// 3番大きいのを配列から削除
arr = arr.filter(function(x) {
return x != third
});
// 4番目に大きい
var fourth = Math.max.apply(Math, arr);
// CSSをつける
$.each(rank, function(_, v) {
var num = parseFloat($(v).text());
if (num == first) $(v).css('background-color', '#FFC0CB');
if (num == second) $(v).css('background-color', '#FFCC99');
if (num == third) $(v).css('background-color', '#C0F0FF');
if (num == fourth) $(v).css('background-color', '#E6E6FA');
});
}