Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,027

HOME > กระทู้สำหรับภาษาต่าง ๆ > ใครมีโค๊ดทำ pop up วินโดว์ที่โผล่มาตอนเปิดเว็บ ต้องการใช้ด่วนจริงๆ



ใครมีโค๊ดทำ pop up วินโดว์ที่โผล่มาตอนเปิดเว็บ ต้องการใช้ด่วนจริงๆ

 
Topic : 048029



โพสกระทู้ ( 480 )
บทความ ( 0 )



สถานะออฟไลน์



พยามหาแล้วยังไม่เจอ แต่จะหาไปเรื่อย ๆ

ต้องการใช้ด่วนจริงๆค่ะ เผื่อเพื่อนๆมีแนะนำบ้าง ช่วยหน่อยนะค่ะ

เป็น jQuery ยิ่งดีค่ะ เป็น pop up ที่มันโผล่ด้านขวามือ (ขวาล่าง) นะค่ะ

คือจะทำเป็น Arets แจ้งเตือน หรือแจ้งข่าวสารต่างๆค่ะ หรือแจ้งเตือนสมาชิกที่ยังไม่ log in

ประมาณนี้ค่ะ




Tag : HTML/CSS, JavaScript, Ajax, jQuery


Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2010-09-01 13:17:23 By : Avrill View : 1708 Reply : 5
 

 

No. 1

Guest


ClueTip Tooltips ของ jQuery ลองไปดูสิ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-09-01 14:37:52 By : ิburn
 


 

No. 2



โพสกระทู้ ( 3,144 )
บทความ ( 1 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์


ทำเล่น

Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>JQuery Pop Up</title>
    
    <style type="text/css">
        * {
            margin: 0;
            padding: 0;
        }

        /* Bubble pop-up */
        .popup 
        {
            display: none;
        	position: absolute;
        	z-index: 50;
        	bottom: 20px;
        	right: 20px;
        	border-collapse: collapse;
        }

        .popup td.corner {
        	height: 15px;
        	width: 19px;
        }

        .popup td#topleft { background-image: url(http://static.jqueryfordesigners.com/demo/images/coda/bubble-1.png); }
        .popup td.top { background-image: url(http://static.jqueryfordesigners.com/demo/images/coda/bubble-2.png); }
        .popup td#topright { background-image: url(http://static.jqueryfordesigners.com/demo/images/coda/bubble-3.png); }
        .popup td.left { background-image: url(http://static.jqueryfordesigners.com/demo/images/coda/bubble-4.png); }
        .popup td.right { background-image: url(http://static.jqueryfordesigners.com/demo/images/coda/bubble-5.png); }
        .popup td#bottomleft { background-image: url(http://static.jqueryfordesigners.com/demo/images/coda/bubble-6.png); }
        .popup td.bottom { background-image: url(http://static.jqueryfordesigners.com/demo/images/coda/bubble-7.png); text-align: center;}
        .popup td.bottom img { display: block; margin: 0 auto; }
        .popup td#bottomright { background-image: url(http://static.jqueryfordesigners.com/demo/images/coda/bubble-8.png); }

        .popup table.popup-contents {
        	font-size: 12px;
        	line-height: 1.2em;
        	background-color: #fff;
        	color: #666;
        	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", sans-serif;
        	}

        table.popup-contents th {
        	text-align: right;
        	text-transform: lowercase;
        	}

        table.popup-contents td {
        	text-align: left;
        	}

        tr#release-notes th {
        	text-align: left;
        	text-indent: -9999px;
        	background: url(http://jqueryfordesigners.com/demo/images/coda/starburst.gif) no-repeat top right;
        	height: 17px;
        	}

        tr#release-notes td a {
        	color: #333;
        }
    </style>
    
    <script src="jquery-1.4.2.min.js" type="text/javascript"></script>
    <script type="text/javascript">
        $(document).ready(function() {
        $('#dpop').delay(2000).slideDown(1000);
        $('#dpop').delay(5000).slideUp(1000);
    });
    </script>
</head>
<body>
    <div>
        <table id="dpop" class="popup">
        	<tbody>
        	    <tr>
        		    <td id="topleft" class="corner"></td>
        		    <td class="top"></td>
        		    <td id="topright" class="corner"></td>
        	    </tr>

        	    <tr>
        		    <td class="left"></td>
        		    <td>
        		        <table class="popup-contents">
        			        <tbody>
        			        <tr>
        				        <th>Name:</th>
        				        <td>Tungman</td>

        			        </tr>
        			        <tr>
        				        <th>Date:</th>
        				        <td>1/8/2010</td>
        			        </tr>
        			        <tr>
        				        <th>Country:</th>
        				        <td>ThaiLand</td>
        			        </tr>
        			        <tr>
        				        <th>Browser:</th>
        				        <td>Firefox</td>
        			        </tr>						
        			        <tr id="release-notes">
        				        <th>www.thaicreate.com:</th>
        				        <td><a title="www.thaicreate.com" href="https://www.thaicreate.com">www.thaicreate.com</a></td>
        			        </tr>
        		            </tbody>
        		        </table>  
        		    </td>
        		    <td class="right"></td>    
        	    </tr>
        	    <tr>
        		    <td class="corner" id="bottomleft"></td>
        		    <td class="bottom"><img width="30" height="29" alt="popup tail" src="http://static.jqueryfordesigners.com/demo/images/coda/bubble-tail2.png"/></td>
        		    <td id="bottomright" class="corner"></td>
        	    </tr>
            </tbody>
        </table>
    </div>
</body>
</html>





อย่าลืม reference jquery ด้วย


ประวัติการแก้ไข
2010-09-01 15:39:22
2010-09-01 15:43:29
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-09-01 15:37:43 By : tungman
 


 

No. 3



โพสกระทู้ ( 3,748 )
บทความ ( 0 )

สมาชิกที่ใส่เสื้อไทยครีเอท Hall of Fame 2012

สถานะออฟไลน์
Facebook

เจ๋งมากเลยครับพี่ tungman
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-09-02 10:01:52 By : Dragons_first
 


 

No. 4



โพสกระทู้ ( 480 )
บทความ ( 0 )



สถานะออฟไลน์


ตอบความคิดเห็นที่ : 2 เขียนโดย : tungman เมื่อวันที่ 2010-09-01 15:37:43
รายละเอียดของการตอบ ::

ขอบคุณมากๆนะค่ะ

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-09-02 13:33:44 By : Avrill
 


 

No. 5



โพสกระทู้ ( 3,144 )
บทความ ( 1 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์


ไม่ได้ทำเองหมดหรอก ไปเอากรอบเขามา แล้วเขียน jquery + กำหนดตำแหน่ง css ต่อแค่นี้เอง

Code (C#)
    <script src="jquery-1.4.2.min.js" type="text/javascript"></script>
    <script type="text/javascript">
        $(document).ready(function() {
        $('#dpop').delay(2000).slideDown(1000);    //กำหนดค่าเอาเองได้ว่าจะเอาเท่าไหร่
        $('#dpop').delay(5000).slideUp(1000);    //กำหนดค่าเอาเองได้ว่าจะเอาเท่าไหร่
    });
    </script>


Code (C#)
.popup
{
       display: none;
       position: absolute;    /* ตรงนี้ ให้เป็นจุด reference */
       z-index: 50;
       bottom: 20px;    /* ตรงนี้ ให้เป็นจุด reference */
       right: 20px;    /* ตรงนี้ ให้เป็นจุด reference */
       border-collapse: collapse;
}

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-09-02 13:45:46 By : tungman
 


   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : ใครมีโค๊ดทำ pop up วินโดว์ที่โผล่มาตอนเปิดเว็บ ต้องการใช้ด่วนจริงๆ
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 01
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่