def if_test(num):
if num > 100:
print('100 < num')
elif num > 50:
print('50 < num <= 100')
elif num > 0:
print('0 < num <= 50')
elif num == 0:
print('num == 0')
else:
print('num < 0')
if_test(1000)
100 < num
if_test(70)
50 < num <= 100
if_test(0)
num == 0
if_test(-100)
num < 0
気になる質問をクリップする
クリップした質問は、後からいつでもMYページで確認できます。
またクリップした質問に回答があった際、通知やメールを受け取ることができます。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
回答1件
0
ベストアンサー
元ソースをなるべく生かしてこんなかんじ
javascript
1<style> 2.cp_tooltip { 3 display: inline-block; 4} 5.cp_tooltiptext { 6 position: relative; 7 cursor: pointer; 8 background: linear-gradient(transparent 60%, #f1f1f1 60%); 9} 10.cp_tooltiptext.checked{ 11 color:red; 12} 13.cp_tooltiptext:not(.checked)::after { 14 position: absolute; 15 transition: all 0.3s ease 0s; 16 opacity: 0; 17 top: 26px; 18 left: 0px; 19 display: block; 20 padding: 0.2em 0.5em; 21 content: attr(data-tooltip); 22 white-space: nowrap; 23 color: #000000; 24 border-radius: 6px; 25 background: #ffffff; 26} 27.cp_tooltiptext:hover::after { 28 top: 26px; 29 opacity: 1; 30} 31</style> 32<script> 33window.addEventListener('DOMContentLoaded', ()=>{ 34 [].forEach.call(document.querySelectorAll('.cp_tooltiptext'),x=>{ 35 x.addEventListener('click',e=>{ 36 x.classList.toggle('checked'); 37 }); 38 }); 39}); 40</script> 41 42<span> 43<span> 44<div class="cp_tooltip"> 45<span data-tooltip="私は" class="cp_tooltiptext">I</span> 46</div> 47<div class="cp_tooltip"> 48<span data-tooltip="です" class="cp_tooltiptext">am</span> 49</div> 50<div class="cp_tooltip"> 51<span data-tooltip="一人の" class="cp_tooltiptext">a</span> 52</div> 53<div class="cp_tooltip"> 54<span data-tooltip="学生" class="cp_tooltiptext">student</span> 55</div> 56</span> 57<div ID="moji1" style="visibility:hidden;"> 58</div>
投稿2019/11/06 03:26
総合スコア116661
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/11/06 03:27
2019/11/06 03:31 編集
2019/11/06 03:38
2019/11/06 03:41
2019/11/06 03:44
2019/11/06 03:55
2019/11/06 04:28
2019/11/06 04:57
2019/11/08 02:14
2019/11/08 02:22
あなたの回答
tips
太字
斜体
打ち消し線
見出し
引用テキストの挿入
コードの挿入
リンクの挿入
リストの挿入
番号リストの挿入
表の挿入
水平線の挿入
プレビュー
質問の解決につながる回答をしましょう。 サンプルコードなど、より具体的な説明があると質問者の理解の助けになります。 また、読む側のことを考えた、分かりやすい文章を心がけましょう。