2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

懐かしい?もう使われなくなったHTMLタグたち

Last updated at Posted at 2020-09-28

私はたまにですが古き良き時代のHP(いい意味で)をみたくなります。
ものすごく色が派手で、チカチカ点滅していたり、無駄に動いたり、いきなり音楽が流れたりなど、ある意味面白い時代だったと思います。
あの頃はあれが一番のアイキャッチだったのかもしれませんね。
そこでそういえばあのタグって今どうなってるんだろうと思って調べたらやっぱりHTML5になって廃止になってるものばかりでした。
最近の人は知らないかもしれないので少しでも古き良き時代の今は使われなくなったHTMLタグを一部ですがご紹介できればなと思いまとめてみました。

<blink> タグ  - テキストの点滅 -

これは昔はよくありました。
現在も同じように表現するにはCSSのanimationを使えば同じように点滅させることができます。

blink.html
<span class="blink">文字が点滅します</span>
blink.css
.blink {
  animation:blink 0.2s ease-in-out infinite alternate;
}

@keyframes blink {
  0% { opacity: 1.0; }
  100% { opacity: 0; }
}

<marquee> スライドタグ 

これも昔はよくありました。
文字がスライドしてくるタグです。
HTML5ではもちろん廃止されています。
現在同じように文字をスライドさせるにはCSSのmarqueeを使うとできます。

marquee.html
<div class="marquee" >
 <p> 動くテキスト </p>
</div>
marquee.css
.marquee p {
 margin: 0; 
 padding-left: 100vw; 
 display: inline-block; 
 white-space: nowrap;
 animation-name: marquee; 
 animation-timing-function: linear;
 animation-duration: 15s;
 animation-iteration-count: infinite;
}

@keyframes marquee {
 from   { transform: translate(0%); } 
 99%,to { transform: translate(-100%); }
}

<bgsound> タグ - 音楽再生 - 

BGMを再生するタグです。
IE全盛期のもので、IE独自の仕様だったため使われなくなったようです。
今では<audio>タグで応用することができます。

<strike> タグ - 打ち消し線 -

打ち消し線
現在残っているタグでいうと<s>や<del>のことです。
ちなみに<s>は訂正のときに使い、<del>は削除のときに使います

<center> - 中央揃え -

これは文字通り中央揃えするタグです。
装飾するものは基本CSSで記述するということになりましたのでHTML5では廃止されています。
現在でやるするとCSSで text-align: center; 中央揃えができます。

ちなみに

昔ながらのサイトがまだいくつかあったようなのでご紹介します。
※ものすごくチカチカするのでご注意して下さい。

:sunny: 激安 格安 爆安ホームページ制作屋
http://tonys.k-free.net/

:sunny: ナイトウ薬局
http://hm.aitai.ne.jp/~naitonet/

:sunny: 愛の妖精ぷりんてぃん
http://www.takamagahara.com/printin/

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?