//AdSenseにリンク

PiyoさんのTOP画像を一方的に上に動かすCSSの記述

アピールエリア

メッセージ 部分に記入した内容

<a href="リンク先URL">
<img class="piyopon" 
src="画像のURL">
</a>

追加CSSの記入

img.piyopon{
	position:fixed;
	right:0;
	bottom:-100px;
	width:20%;
	animation: piyoLoop 17s linear infinite;
/*順序のCSS(数字が大きいほうが優先度が高い)*/
	z-index:999;
}
#appeal{
	height:0px;
}
@keyframes piyoLoop{
	0%{
    bottom:-150px;
	}
	100% {
	bottom:900px;
	}
}