目前分類:jQuery (71)

瀏覽方式: 標題列表 簡短摘要

#overlay {
position: fixed;

amychang2014 發表在 痞客邦 留言(0) 人氣()

#overlay {
position: fixed;

amychang2014 發表在 痞客邦 留言(0) 人氣()

<input type='file' value='C:\fakepath' />

 

amychang2014 發表在 痞客邦 留言(0) 人氣()

<input type="file" name="FileUpload1" id="FileUpload1" class="form-control" style="width:400px;" runat="server" />
<img id="testImg" src="#" alt="your image" />
                <script>
                    $(function () {
                        $('#testImg').hide();
                    });
                    function getImgSize(input) {
                        if (input.files && input.files[0]) {
                            var reader = new FileReader();
                            reader.onload = function (e) {
                                $('#testImg').attr('src', e.target.result);
                            }
                            reader.readAsDataURL(input.files[0]);
                        }
                    }

                    $('#testImg').on('load', function () {
                        if (($(this).width() == 77) && ($(this).height() == 50)) {
                        } else {
                            $('#<%=FileUpload1.ClientID%>').val('');
                            alert('※上傳檔案尺寸不符規定※');                                    
                            }
                        })
                        $('#<%=FileUpload1.ClientID%>').change(function () {
                        getImgSize(this);
                    });
                        </script>

amychang2014 發表在 痞客邦 留言(0) 人氣()

<img id="testImg1" src="#" alt="your image" />
                        <img id="testImg2" src="#" alt="your image" />
                        <script>
                            $(function () {
                                $('#testImg1').hide();
                                $('#testImg2').hide();
                            });
                            function getImgSize(input, id) {
                                if (input.files && input.files[0]) {
                                    var reader = new FileReader();
                                    reader.onload = function (e) {
                                        $('#testImg' + id).attr('src', e.target.result);
                                    }
                                    reader.readAsDataURL(input.files[0]);
                                }
                            }
                            $('#testImg1').on('load', function () {
                                if (($(this).width() == 77) && ($(this).height() == 50)) {
                                } else {
                                    $('#<%=FileUpload1.ClientID%>').val('');
                                    alert('※上傳檔案尺寸不符規定1※');
                                }
                            })
                            $('#testImg2').on('load', function () {
                                if (($(this).width() == 77) && ($(this).height() == 50)) {
                                } else {
                                    $('#<%=FileUpload2.ClientID%>').val('');
                                    alert('※上傳檔案尺寸不符規定2※');
                                }
                            })

                            $('#<%=FileUpload1.ClientID%>').change(function () {
                                getImgSize(this, 1);
                            });
                            $('#<%=FileUpload2.ClientID%>').change(function () {
                                getImgSize(this, 2);
                            });
                        </script>

amychang2014 發表在 痞客邦 留言(0) 人氣()

<input type="file" multiple="multiple" name="File1[]" id="File1" accept="image/*" class="yellowButton_fileupload" style="width:200px;" />
                        <script>
                            $(document).ready(function () {
                                $('#<%=按鈕_上傳.ClientID%>').hide();
                            });
                           
                            $('input#File1').change(function () {
                                var files = $(this)[0].files;
                                var size = 0;
                                var check = 0;
                                for (var i = 0; i < files.length; i++) {
                                    size = size + this.files[i].size;
                                    if (this.files[i].size > 1024 * 1024) {
                                        alert('單個檔案大小大於1MB,不允上傳');
                                        $('input#File1').val('');
                                        check = 1;
                                        break;
                                    }
                                }
                                if (check == 0) {
                                    if (size > 1024 * 1024 * 10) {
                                        //alert(size);
                                        alert('您選擇上傳的檔案大小大於10MB,請重新選擇!');
                                        $('input#File1').val('');
                                        $('#<%=按鈕_上傳.ClientID%>').hide();
                                    } else {
                                        //alert('ok');
                                        $('#<%=按鈕_上傳.ClientID%>').show();
                                    }
                                }
                            });
                        </script>

amychang2014 發表在 痞客邦 留言(0) 人氣()

function getImgSize(input) {

if (input.files && input.files[0]) {

amychang2014 發表在 痞客邦 留言(0) 人氣()

<input type="file" multiple="multiple" name="File1[]" id="File1" accept="image/*" class="yellowButton_fileupload" style="width:200px;" />
                        <script>
                            $('input#File1').change(function () {
                                var files = $(this)[0].files;
                                //alert(files.length);
                                var size = 0;
                                for (var i = 0; i < files.length; i++) {
                                    size = size + this.files[i].size;
                                }
                                if (size > 1024 * 1024 * 10) {
                                    //alert(size);
                                    alert('您選擇上傳的檔案大小大於10MB,請重新選擇!');
                                    $('#<%=按鈕_上傳.ClientID%>').hide();
                                } else {
                                    //alert('ok');
                                    $('#<%=按鈕_上傳.ClientID%>').show();
                                }
                            });
                        </script>

amychang2014 發表在 痞客邦 留言(0) 人氣()

in case of input type file the value is stored in array as files with key name.

$('input#my_id').change(function(){var files = $(this)[0].files;if(files.length >10){
        alert("you can select max 10 files.");}else{
        alert("correct, you have selected less than 10 files");}});

fiddle example : http://jsfiddle.net/nze2B/3/

amychang2014 發表在 痞客邦 留言(0) 人氣()

<!doctype html>

amychang2014 發表在 痞客邦 留言(0) 人氣()

$('#<%=lblName.ClientID%>')


amychang2014 發表在 痞客邦 留言(0) 人氣()

<script type="text/javascript" src="<yourinstallationpath>/tinymce/tinymce.min.js"></script>
<scripttype="text/javascript">

amychang2014 發表在 痞客邦 留言(0) 人氣()

$('#stop').on('click', function() {
//$('#popup-youtube-player').stopVideo();

amychang2014 發表在 痞客邦 留言(0) 人氣()

<html lang="en">
<head>

amychang2014 發表在 痞客邦 留言(0) 人氣()

<html lang="en">
<head>

amychang2014 發表在 痞客邦 留言(0) 人氣()

http://i-like-robots.github.io/EasyZoom/

 

amychang2014 發表在 痞客邦 留言(0) 人氣()

 http://stackoverflow.com/questions/16359492/changing-background-image-one-time-on-responsive-background-image

function test() {
$("img").each(function(index) {

amychang2014 發表在 痞客邦 留言(0) 人氣()

<div class="newsItemTitle">
    <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
</div>
<div class="newsItemBox">                        
    <div class="newsItemContent">
                <asp:Label ID="Label1_1" runat="server" Text="Label"></asp:Label>
        </div>
    <div class="newsItemReadAll">
                <asp:HyperLink ID="HyperLink1" runat="server">  ...《完整閱讀》</asp:HyperLink>
        </div>
</div>

.newsItemBox {
    z-index:1;
    position: relative;
    top: 0;
    left: 0;
    float: left;
    width: 565px;
    height: 80px;
}
.newsItemContent {
    z-index:1;
    position: relative;
    top: 0;
    left: 0;
    padding: 5px 0 0 5px;
    float: left;
    width: 565px;
    height: 80px; /*95px;*/
    line-height: 20px;
    font-size: 12px;
    font-family: 新細明體;
    color: #e5e5e5;
    text-overflow:ellipsis;
    -o-text-overflow:ellipsis;
    text-align:justify;
    overflow:hidden;
}
.newsItemReadAll {
    z-index:888;
    position: relative;
    top: -21px;
    left: 446px;
    padding: 5px 0 0 5px;
    float: left;
    width: 120px;
    height: 12px; /*95px;*/
    font-size: 12px;
    font-family: 新細明體;
    text-align:right;
    vertical-align:bottom;
    color: #ff6a00;
    background-image: -ms-linear-gradient(left, rgba(0,0,0,0) 8%, rgb(0,0,0,0) 20%);

    /* Mozilla Firefox */ 
    background-image: -moz-linear-gradient(left, rgba(0,0,0,0) 8%, rgb(0,0,0,0) 20%);

    /* Opera */ 
    background-image: -o-linear-gradient(left, rgba(0,0,0,0) 8%, rgb(0,0,0,0) 20%);

    /* Webkit (Safari/Chrome 10) */ 
    background-image: -webkit-gradient(linear, left, right, color-stop(0, rgba(0,0,0,0)), color-stop(1, rgb(0,0,0)));

    /* Webkit (Chrome 11+) */ 
    background-image: -webkit-linear-gradient(left, rgba(0,0,0,0) 8%,rgb(0,0,0) 20%);

    /* W3C Markup, IE10 Release Preview */ 
    background-image: linear-gradient(to right, rgba(0,0,0,0) 8%, rgb(0,0,0) 20%);
}

 

 

amychang2014 發表在 痞客邦 留言(0) 人氣()

  • 這是一篇加密文章,請輸入密碼
  • 密碼提示:win
  • 請輸入密碼:
  • 這是一篇加密文章,請輸入密碼
  • 密碼提示:win
  • 請輸入密碼: