【meng_項目】python+flask+html+css製作一個簡單的生日祝福語網頁

python+flask+html+css製作一個簡單的生日祝福語網頁

一個py文件:     test.py
一個html文件:   birthday_index.html
一張圖片:       timg.jpg
一個文件夾:     static

條件:已安裝python3和flask

test.py的內容如下:

from flask import Flask,send_file         ### 導出flask類
app = Flask(__name__)           ### 生成一個web app對象

@app.route('/')                 ### 註冊一個url,表示當請求url+'/'這個網站時,執行hello_world這個函數
def Birthday_index():
    return send_file("Birthday_index.html")
    
if __name__ == '__main__':      ### 啓動app應用
    app.run()                   ### 相關參數:app.run(host=,port=,debug=,**options)
                                ### host 默認是:127.0.0.1
                                ### port 默認是:5000

birthday_index.html內容如下:

<!DOCTYPE html>
<html>
    <head>
    <title>Happy Birthday</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta charset="utf-8">
    </head>
<!--背景圖-->
<style>
    .bg{
        top: 0;
        left: 0;
        width:100%;
        height:100%;
        min-width: 1000px;
        z-index:-10;
        zoom: 1;
        background-color: #fff;
        background: url(./static/timg.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        -webkit-background-size: cover;
        -o-background-size: cover;
        background-position: center 0;
    }
</style>

<body class="bg">

<h1 style="color: DeepPink; font-size:30px">蒙牛 女士:</h1>

<br/>
<br/>
<br/>

<p style="outline: none;
  text-decoration: none;
  position: relative;
  font-size: 3em;
  line-height: 1;
  color: HotPink;       <!-- 顏色:熱情的粉紅-->
  letter-spacing:3px;">
   生日快樂。                                      <br/>
   願所有的幸福都陪伴着你,仰首是春,俯首是秋;  <br/>
   願所有的歡樂都追隨着你,月圓是詩,月缺是畫。
</p>

<!--玫瑰花 -->
<p style="text-align: center;">
<canvas id="c" height="900" width="900"></canvas>
<script>
 var b = document.body;
 var c = document.getElementsByTagName('canvas')[0];
 var a = c.getContext('2d');
 document.body.clientWidth;
</script>
<script>

with(m=Math)C=cos,S=sin,P=pow,R=random;c.width=c.height=f=500;h=-250;function p(a,b,c){if(c>60)return[S(a*7)*(13+5/(.2+P(b*4,4)))-S(b)*50,b*f+50,625+C(a*7)*(13+5/(.2+P(b*4,4)))+b*400,a*1-b/2,a];A=a*2-1;B=b*2-1;if(A*A+B*B<1){if(c>37){n=(j=c&1)?6:4;o=.5/(a+.01)+C(b*125)*3-a*300;w=b*h;return[o*C(n)+w*S(n)+j*610-390,o*S(n)-w*C(n)+550-j*350,1180+C(B+A)*99-j*300,.4-a*.1+P(1-B*B,-h*6)*.15-a*b*.4+C(a+b)/5+P(C((o*(a+1)+(B>0?w:-w))/25),30)*.1*(1-B*B),o/1e3+.7-o*w*3e-6]}if(c>32){c=c*1.16-.15;o=a*45-20;w=b*b*h;z=o*S(c)+w*C(c)+620;return[o*C(c)-w*S(c),28+C(B*.5)*99-b*b*b*60-z/2-h,z,(b*b*.3+P((1-(A*A)),7)*.15+.3)*b,b*.7]}o=A*(2-b)*(80-c*2);w=99-C(A)*120-C(b)*(-h-c*4.9)+C(P(1-b,7))*50+c*2;z=o*S(c)+w*C(c)+700;return[o*C(c)-w*S(c),B*99-C(P(b, 7))*50-c/3-z/1.35+450,z,(1-b/1.2)*.9+a*.1, P((1-b),20)/4+.05]}}setInterval('for(i=0;i<1e4;i++)if(s=p(R(),R(),i%46/.74)){z=s[2];x=~~(s[0]*f/z-h);y=~~(s[1]*f/z-h);if(!m[q=y*f+x]|m[q]>z)m[q]=z,a.fillStyle="rgb("+~(s[3]*h)+","+~(s[4]*h)+","+~(s[3]*s[3]*-80)+")",a.fillRect(x,y,1,1)}',0)

</script><br>
</p>

</body>

</html>

timg.jpg圖片:

 

訪問方法:
將上面的py和html文件放到同一個文件夾下,圖片放到static文件夾(注意一定要放到這個文件夾,不然背景圖片會失效);
運行py文件後,在瀏覽器訪問:http://127.0.0.1:5000/

效果圖如下:

 

後記:

後續購買了一個騰訊雲的服務器,將這些實施到上面,並綁定了一個域名,通過外網訪問對應的域名就可以看到內容。

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章